Browse Source

fix no email content when plain email enabled

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

8
lib.php

@ -207,7 +207,7 @@ function sendCancelMail($info){
$body = $apply_setting['cancelmailcontent']->value; $body = $apply_setting['cancelmailcontent']->value;
$body = updateMailContent($body,$replace); $body = updateMailContent($body,$replace);
$contact = get_admin(); $contact = get_admin();
email_to_user($info, $contact, $apply_setting['cancelmailsubject']->value, '', $body); email_to_user($info, $contact, $apply_setting['cancelmailsubject']->value, html_to_text($body), $body);
} }
function sendConfirmMail($info){ function sendConfirmMail($info){
@ -219,7 +219,7 @@ function sendConfirmMail($info){
$body = $apply_setting['confirmmailcontent']->value; $body = $apply_setting['confirmmailcontent']->value;
$body = updateMailContent($body,$replace); $body = updateMailContent($body,$replace);
$contact = get_admin(); $contact = get_admin();
email_to_user($info, $contact, $apply_setting['confirmmailsubject']->value, '', $body); email_to_user($info, $contact, $apply_setting['confirmmailsubject']->value, html_to_text($body), $body);
} }
function sendConfirmMailToTeachers($courseid,$instanceid,$desc){ function sendConfirmMailToTeachers($courseid,$instanceid,$desc){
@ -242,7 +242,7 @@ function sendConfirmMailToTeachers($courseid,$instanceid,$desc){
$contact = get_admin(); $contact = get_admin();
$info = $editTeacher; $info = $editTeacher;
$info->coursename = $course->fullname; $info->coursename = $course->fullname;
email_to_user($info, $contact, get_string('mailtoteacher_suject', 'enrol_apply'), '', $body); email_to_user($info, $contact, get_string('mailtoteacher_suject', 'enrol_apply'), html_to_text($body), $body);
} }
} }
} }
@ -267,7 +267,7 @@ function sendConfirmMailToManagers($courseid,$desc){
$contact = get_admin(); $contact = get_admin();
$info = $userWithManagerRole; $info = $userWithManagerRole;
$info->coursename = $course->fullname; $info->coursename = $course->fullname;
email_to_user($info, $contact, get_string('mailtoteacher_suject', 'enrol_apply'), '', $body); email_to_user($info, $contact, get_string('mailtoteacher_suject', 'enrol_apply'), html_to_text($body), $body);
} }
} }
} }

Loading…
Cancel
Save