Changes between Version 25 and Version 26 of WebConfig


Ignore:
Timestamp:
Jun 7, 2014, 1:34:30 PM (10 years ago)
Author:
Christian Beer
Comment:

updated to be in sync with current code

Legend:

Unmodified
Added
Removed
Modified
  • WebConfig

    v25 v26  
    126126 '''project_forum_post_rules()''':: return a string describing message board policies.
    127127
    128 To use PHPMailer (the preferred way to send emails to participants):
     128To use [https://github.com/PHPMailer/PHPMailer PHPMailer] (the preferred way to send emails to participants), you must download PHPMailer and put it in PROJECT/html/inc/phpmailer (i.e. the files class.smtp.php and class.phpmailer.php should be in that directory). Than modify the following function:
    129129
    130  '''USE_PHPMAILER'''::
    131         Set to true if you use [https://github.com/PHPMailer/PHPMailer PHPMailer]. In this case you must download PHPMailer and put it in PROJECT/html/inc/phpmailer (i.e. the files class.smtp.php and class.phpmailer.php should be in that directory).
    132130 '''make_php_mailer()''':: return a PHPMailer object with authentication information (see ServerIntro#PHPMailer), used when the above is set to true.
    133131
    134 If you do not set '''USE_PHPMAILER''' then e-mail to participants can still be sent, but it will use PHP's simpler '''mail()''' function.
     132If you do not define '''make_php_mailer()''' then e-mail to participants can still be sent, but it will use PHP's simpler '''mail()''' function.