Note: You are currently viewing documentation for Moodle 2.0. Up-to-date documentation for the latest stable version is available here: Administration hacks.

Administration hacks: Difference between revisions

From MoodleDocs
(Preventing Welcome to the course emails)
 
No edit summary
Line 13: Line 13:
=== Reference ===
=== Reference ===
*[http://moodle.org/mod/forum/discuss.php?d=18583 Stopping "Welcome to the course" emails]
*[http://moodle.org/mod/forum/discuss.php?d=18583 Stopping "Welcome to the course" emails]
[[Category:Administrator]]

Revision as of 13:42, 5 April 2006

Preventing Welcome to the course emails

You can stop moodle sending enrolment emails by changing two lines in the file /enrol/enrol.class.php

The line (occuring twice in the file!) reads:

      email_to_user($USER, $teacher, $subject, $message);

It must be changed to:

      //     email_to_user($USER, $teacher, $subject, $message);

That way, moodle ignores the e-mail-command until you change back to the original line. The setting works for all courses at the same time. It does not affect other e-mails being sent (e.g. the login confirmation).

Reference