Browse Source

send email as site supporter

develop_fields
lainme 10 years ago
parent
commit
9d9102ada5
  1. 8
      lib.php

8
lib.php

@ -206,7 +206,7 @@ function sendCancelMail($info){
$replace = array('firstname'=>$info->firstname,'content'=>format_string($info->coursename),'lastname'=>$info->lastname,'username'=>$info->username); $replace = array('firstname'=>$info->firstname,'content'=>format_string($info->coursename),'lastname'=>$info->lastname,'username'=>$info->username);
$body = $apply_setting['cancelmailcontent']->value; $body = $apply_setting['cancelmailcontent']->value;
$body = updateMailContent($body,$replace); $body = updateMailContent($body,$replace);
$contact = get_admin(); $contact = core_user::get_support_user();
email_to_user($info, $contact, $apply_setting['cancelmailsubject']->value, html_to_text($body), $body); email_to_user($info, $contact, $apply_setting['cancelmailsubject']->value, html_to_text($body), $body);
} }
@ -218,7 +218,7 @@ function sendConfirmMail($info){
$replace = array('firstname'=>$info->firstname,'content'=>format_string($info->coursename),'lastname'=>$info->lastname,'username'=>$info->username); $replace = array('firstname'=>$info->firstname,'content'=>format_string($info->coursename),'lastname'=>$info->lastname,'username'=>$info->username);
$body = $apply_setting['confirmmailcontent']->value; $body = $apply_setting['confirmmailcontent']->value;
$body = updateMailContent($body,$replace); $body = updateMailContent($body,$replace);
$contact = get_admin(); $contact = core_user::get_support_user();
email_to_user($info, $contact, $apply_setting['confirmmailsubject']->value, html_to_text($body), $body); email_to_user($info, $contact, $apply_setting['confirmmailsubject']->value, html_to_text($body), $body);
} }
@ -239,7 +239,7 @@ function sendConfirmMailToTeachers($courseid,$instanceid,$desc){
$body .= '<p>'. get_string('applyuser', 'enrol_apply') .': '.$USER->firstname.' '.$USER->lastname.'</p>'; $body .= '<p>'. get_string('applyuser', 'enrol_apply') .': '.$USER->firstname.' '.$USER->lastname.'</p>';
$body .= '<p>'. get_string('comment', 'enrol_apply') .': '.$desc.'</p>'; $body .= '<p>'. get_string('comment', 'enrol_apply') .': '.$desc.'</p>';
$body .= '<p>'. html_writer::link(new moodle_url("/enrol/apply/apply.php", array('id'=>$courseid,'enrolid'=>$instanceid)), get_string('applymanage', 'enrol_apply')).'</p>'; $body .= '<p>'. html_writer::link(new moodle_url("/enrol/apply/apply.php", array('id'=>$courseid,'enrolid'=>$instanceid)), get_string('applymanage', 'enrol_apply')).'</p>';
$contact = get_admin(); $contact = core_user::get_support_user();
$info = $editTeacher; $info = $editTeacher;
$info->coursename = $course->fullname; $info->coursename = $course->fullname;
email_to_user($info, $contact, get_string('mailtoteacher_suject', 'enrol_apply'), html_to_text($body), $body); email_to_user($info, $contact, get_string('mailtoteacher_suject', 'enrol_apply'), html_to_text($body), $body);
@ -264,7 +264,7 @@ function sendConfirmMailToManagers($courseid,$desc){
$body .= '<p>'. get_string('applyuser', 'enrol_apply') .': '.$USER->firstname.' '.$USER->lastname.'</p>'; $body .= '<p>'. get_string('applyuser', 'enrol_apply') .': '.$USER->firstname.' '.$USER->lastname.'</p>';
$body .= '<p>'. get_string('comment', 'enrol_apply') .': '.$desc.'</p>'; $body .= '<p>'. get_string('comment', 'enrol_apply') .': '.$desc.'</p>';
$body .= '<p>'. html_writer::link(new moodle_url('/enrol/apply/manage.php'), get_string('applymanage', 'enrol_apply')).'</p>'; $body .= '<p>'. html_writer::link(new moodle_url('/enrol/apply/manage.php'), get_string('applymanage', 'enrol_apply')).'</p>';
$contact = get_admin(); $contact = core_user::get_support_user();
$info = $userWithManagerRole; $info = $userWithManagerRole;
$info->coursename = $course->fullname; $info->coursename = $course->fullname;
email_to_user($info, $contact, get_string('mailtoteacher_suject', 'enrol_apply'), html_to_text($body), $body); email_to_user($info, $contact, get_string('mailtoteacher_suject', 'enrol_apply'), html_to_text($body), $body);

Loading…
Cancel
Save