mail.conf.dist.php 666 B

12345678910111213141516
  1. <?php
  2. /**
  3. * This file holds the email configuration settings
  4. * @package chamilo.configuration
  5. */
  6. $platform_email['SMTP_FROM_EMAIL'] = (isset($administrator['email'])?$administrator['email']:'admin@example.com');
  7. $platform_email['SMTP_FROM_NAME'] = (isset($administrator['name'])?$administrator['name']:'Admin');
  8. $platform_email['SMTP_HOST'] = 'localhost';
  9. $platform_email['SMTP_PORT'] = 25;
  10. $platform_email['SMTP_MAILER'] = 'mail'; // mail, sendmail or smtp
  11. $platform_email['SMTP_AUTH'] = 0;
  12. $platform_email['SMTP_USER'] = '';
  13. $platform_email['SMTP_PASS'] = '';
  14. $platform_email['SMTP_CHARSET'] = 'UTF-8';