Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Email processing)

From MoodleDocs


Warning: This page is no longer in use. The information contained on the page should NOT be seen as relevant or reliable.


Heading Misspelled

Could someone remove the trailing parenthesis from the heading of this page, please? (It is not really posibile, since there is a same title page already existing [1] , we need to rename it to something else)

Moodle Email and Notification Messages - Change / Edit / Customize

o Students receive a confirmation email when they create a user account. This text can be found in the lang/?/moodle.php as the emailconfirmation "variable".

o Students receive a welcome email when they enroll in a course. This text can be found in the lang/?/moodle.php file as the welcometocoursetext "variable".

-- quoting Scott Elliott [2] Retrieved 09-07-2012: [3]

Moodle Email and Notification Messages - Hyperlink

You need to escape them in the markup:

For example, an ordinary hyperlink markup will look like:

 <a href="http://www.blah_blah">click here</a>

For your hyperlink to work where you are putting it (presumably you are editing moodle.php), you need to escape the double quote (") by putting back slash (\) before each:

 <a href=\"http://www.blah_blah\">click here</a>

Don't forget to escape any other " " you may put in, such as those for target= and title=

-- quoting Matt Molloy, Retrieved 09-07-2012: [4]