3 ///////////////////////////////////////////////////////////////////////////
5 // NOTICE OF COPYRIGHT //
7 // Moodle - Modular Object-Oriented Dynamic Learning Environment //
8 // http://moodle.com //
10 // Copyright (C) 1999 onwards Martin Dougiamas http://moodle.com //
12 // This program is free software; you can redistribute it and/or modify //
13 // it under the terms of the GNU General Public License as published by //
14 // the Free Software Foundation; either version 2 of the License, or //
15 // (at your option) any later version. //
17 // This program is distributed in the hope that it will be useful, //
18 // but WITHOUT ANY WARRANTY; without even the implied warranty of //
19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
20 // GNU General Public License for more details: //
22 // http://www.gnu.org/copyleft/gpl.html //
24 ///////////////////////////////////////////////////////////////////////////
27 * Email message processor - send a given message by email
29 * @author Luis Rodrigues
30 * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
33 require_once($CFG->dirroot.'/message/output/lib.php');
35 class message_output_email extends message_output {
37 * Processes the message (sends by email).
38 * @param object $eventdata the event data submitted by the message sender plus $eventdata->savedmessageid
40 function send_message($eventdata) {
43 if (!empty($CFG->noemailever)) {
44 // hidden setting for development sites, set in config.php if needed
45 debugging('$CFG->noemailever active, no email message sent.', DEBUG_MINIMAL);
49 //hold onto email preference because /admin/cron.php sends a lot of messages at once
50 static $useremailaddresses = array();
52 //check user preference for where user wants email sent
53 if (!array_key_exists($eventdata->userto->id, $useremailaddresses)) {
54 $useremailaddresses[$eventdata->userto->id] = get_user_preferences('message_processor_email_email', $eventdata->userto->email, $eventdata->userto->id);
56 $usertoemailaddress = $useremailaddresses[$eventdata->userto->id];
58 if ( !empty($usertoemailaddress)) {
59 $userto->email = $usertoemailaddress;
62 $result = email_to_user($eventdata->userto, $eventdata->userfrom,
63 $eventdata->subject, $eventdata->fullmessage, $eventdata->fullmessagehtml);
69 * Creates necessary fields in the messaging config form.
70 * @param object $mform preferences form class
72 function config_form($preferences){
74 $string = get_string('email','message_email').': <input size="30" name="email_email" value="'.$preferences->email_email.'" />';
76 if (empty($preferences->email_email) && !empty($preferences->userdefaultemail)) {
77 $string .= ' ('.get_string('default').': '.$preferences->userdefaultemail.')';
83 * Parses the form submitted data and saves it into preferences array.
84 * @param object $mform preferences form class
85 * @param array $preferences preferences array
87 function process_form($form, &$preferences){
88 if (isset($form->email_email)) {
89 $preferences['message_processor_email_email'] = $form->email_email;
94 * Loads the config data from database to put on the form (initial load)
95 * @param array $preferences preferences array
96 * @param int $userid the user id
98 function load_data(&$preferences, $userid){
99 $preferences->email_email = get_user_preferences( 'message_processor_email_email', '', $userid);