Note:

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

Email processing): Difference between revisions

From MoodleDocs
m (Page Heading Misspelled)
 
No edit summary
Line 1: Line 1:
== Heading Misspelled ==
Could someone remove the trailing parenthesis from the heading of this page, please?
Could someone remove the trailing parenthesis from the heading of this page, please?
== 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 [http://moodle.org/user/view.php?id=1956&course=5]  Retrieved 09-07-2012: [http://moodle.org/mod/forum/discuss.php?d=48601]
== 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: [http://moodle.org/mod/forum/discuss.php?d=48601]

Revision as of 22:43, 7 September 2012

Heading Misspelled

Could someone remove the trailing parenthesis from the heading of this page, please?

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 [1] Retrieved 09-07-2012: [2]

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: [3]