mail.conf.dist.php 809 B

1234567891011121314151617181920
  1. <?php
  2. // ============================== mail =================================
  3. // smtp values for phpmailer Class
  4. $platform_email['SMTP_FROM_EMAIL'] = $administrator["email"];
  5. $platform_email['SMTP_FROM_NAME'] = $administrator["name"];
  6. $platform_email['SMTP_HOST'] = 'localhost';
  7. $platform_email['SMTP_PORT'] = 25;
  8. $platform_email['SMTP_MAILER'] = 'mail'; //mail, sendmail or smtp
  9. $platform_email['SMTP_AUTH'] = 0;
  10. $platform_email['SMTP_USER'] = '';
  11. $platform_email['SMTP_PASS'] = '';
  12. $platform_email['SMTP_CHARSET'] = 'ISO-8859-15';
  13. global $charset;
  14. if (!empty($charset) && $charset != $platform_email['SMTP_CHARSET']) {
  15. $platform_email['SMTP_CHARSET'] = $charset;
  16. }
  17. // ====================================================================
  18. ?>