Changes between Version 25 and Version 26 of WebConfig
- Timestamp:
- Jun 7, 2014, 1:34:30 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebConfig
v25 v26 126 126 '''project_forum_post_rules()''':: return a string describing message board policies. 127 127 128 To use PHPMailer (the preferred way to send emails to participants):128 To 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: 129 129 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).132 130 '''make_php_mailer()''':: return a PHPMailer object with authentication information (see ServerIntro#PHPMailer), used when the above is set to true. 133 131 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.132 If 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.