Browse Source

Merge pull request #25 from lainme/plain_mail

fix no email content when plain email enabled
develop_fields
Flotter Totte 10 years ago
parent
commit
3dbb54a9a9
  1. 8
      lib.php

8
lib.php

@ -207,7 +207,7 @@ function sendCancelMail($info){
$body = $apply_setting['cancelmailcontent']->value;
$body = updateMailContent($body,$replace);
$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){
@ -219,7 +219,7 @@ function sendConfirmMail($info){
$body = $apply_setting['confirmmailcontent']->value;
$body = updateMailContent($body,$replace);
$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){
@ -242,7 +242,7 @@ function sendConfirmMailToTeachers($courseid,$instanceid,$desc){
$contact = get_admin();
$info = $editTeacher;
$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();
$info = $userWithManagerRole;
$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