0

我的系统上安装了moodle 1.9版本。我已经应用了在 5 天之前向学生发送注册到期通知电子邮件的设置(在课程设置下)。我想知道电子​​邮件文本的定义位置,以便我可以根据自己的要求进行更改。

请帮助我。

问候,

潘卡伊·库拉纳

4

1 回答 1

2

电子邮件的内容包含(假设您使用英语)在:

[MOODLE_ROOT]/lang/en_utf8/moodle.php

对于其他语言,它包含在:

[MOODLE_ROOT]/lang/[LANGUAGE]/moodle.php

具体来说,查看以下字符串:

$string['expirynotifystudentsemail'] = 'Dear $a->studentstr:

This is a notification that your enrolment in the course $a->course will expire in $a->threshold days.

Please contact $a->teacherstr for any further enquiries.';

然后用于:

[MOODLE_ROOT]/enrol/manual/enrol.php

更改该字符串,您就完成了。

于 2010-11-19T10:42:25.227 回答