mail.conf.dist.php 704 B

1234567891011121314151617
  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'] = IS_WINDOWS_OS ? 'smtp' : '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'] = api_get_system_encoding();
  13. // ====================================================================
  14. ?>