0
私はMoodleの学習管理システムを構築しています。私は電子メールヘッダーとフッターを各電子メールに追加したいと思います。Moodleの電子メールテンプレート
私は次のように./lib/moodlelib.phpに画像を追加するためのMoodleの何らかの変化をした:
function email_to_user($user, $from, $subject, $messagetext, $messagehtml = '', $attachment = '', $attachname = '',
$usetrueaddress = true, $replyto = '', $replytoname = '', $wordwrapwidth = 79) {
global $CFG, $PAGE, $SITE;
// Append image at top
if($messagehtml){
$tmp = $messagehtml;
// Added image here
$messagehtml = '<img src="'.$CFG->wwwroot.'/images/logo.png" alt="LMS" /><br/>';
// $messagehtml = $image;
$messagehtml .= $tmp;
}
if($messagetext){
$tmp = $messagetext;
// Added image here
$messagetext = '<img src="'.$CFG->wwwroot.'/images/logo.png" alt="LMS" /><br/>';
// $messagehtml = $image;
$messagetext .= $tmp;
}
....................
が、私は、固定されたテンプレートとして、ヘッダーとフッターをしたいです。私を助けてください。