-
Notifications
You must be signed in to change notification settings - Fork 160
/
send_emails.php
110 lines (90 loc) · 3.84 KB
/
send_emails.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Configurable Reports a Moodle block for creating customizable reports
*
* @copyright 2020 Juan Leyva <[email protected]>
* @package block_configurable_reports
* @author Juan leyva <http://www.twitter.com/jleyvadelgado>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
// Email form added to enable email to selected users.
require_once('../../config.php');
defined('MOODLE_INTERNAL') || die;
require_once($CFG->libdir . '/formslib.php');
require_login();
global $PAGE, $USER, $DB, $COURSE;
$context = context_course::instance($COURSE->id);
$PAGE->set_context($context);
if (!has_capability('block/configurable_reports:managereports', $context) &&
!has_capability('block/configurable_reports:manageownreports', $context)) {
throw new moodle_exception('badpermissions');
}
/**
* Class sendemail_form
*
* @package block_configurable_reports
* @author Juan leyva <http://www.twitter.com/jleyvadelgado>
*/
class sendemail_form extends moodleform {
/**
* Form definition
*/
public function definition(): void {
global $COURSE;
$mform =& $this->_form;
$context = context_course::instance($COURSE->id);
$editoroptions = [
'trusttext' => true,
'subdirs' => true,
'maxfiles' => EDITOR_UNLIMITED_FILES,
'context' => $context,
];
$mform->addElement('hidden', 'usersids', $this->_customdata['usersids']);
$mform->addElement('hidden', 'courseid', $this->_customdata['courseid']);
$mform->addElement('text', 'subject', get_string('email_subject', 'block_configurable_reports'));
$mform->setType('subject', PARAM_TEXT);
$mform->addRule('subject', null, 'required');
$mform->addElement('editor', 'content', get_string('email_message', 'block_configurable_reports'), null, $editoroptions);
$buttons = [];
$buttons[] =& $mform->createElement('submit', 'send', get_string('email_send', 'block_configurable_reports'));
$buttons[] =& $mform->createElement('cancel');
$mform->addGroup($buttons, 'buttons', get_string('actions'), [' '], false);
}
}
// TODO _POST?? not Moodle way.
$form = new sendemail_form(null, [
'usersids' => implode(',', $_POST['userids']),
'courseid' => (int) $_POST['courseid'],
]);
if ($form->is_cancelled()) {
redirect(new moodle_url('/course/view.php?id=' . $data->courseid));
} else if ($data = $form->get_data()) {
foreach (explode(',', $data->usersids) as $userid) {
$abouttosenduser = $DB->get_record('user', ['id' => (int) $userid]);
email_to_user($abouttosenduser, $USER, $data->subject, format_text($data->content['text']), $data->content['text']);
}
// After emails were sent... go back to where you came from.
redirect(new moodle_url('/course/view.php?id=' . $data->courseid));
}
$PAGE->set_title(get_string('email', 'questionnaire'));
$PAGE->set_heading(format_string($COURSE->fullname));
$PAGE->navbar->add(get_string('email', 'questionnaire'));
echo $OUTPUT->header();
echo html_writer::start_tag('div', ['class' => 'no-overflow']);
$form->display();
echo html_writer::end_tag('div');
echo $OUTPUT->footer();