0% found this document useful (0 votes)
127 views1 page

Mail Chamilo

This document contains PHP configuration settings for email sending through PHPMailer. It defines variables for the SMTP server host, port, authentication details, and other settings like the from email address, name, and charset for emails sent through PHPMailer using Gmail's SMTP server.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
127 views1 page

Mail Chamilo

This document contains PHP configuration settings for email sending through PHPMailer. It defines variables for the SMTP server host, port, authentication details, and other settings like the from email address, name, and charset for emails sent through PHPMailer using Gmail's SMTP server.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<?

php
/**
*
*
*
*
*/

This file holds the configuration settings


for phpmailer Class.
@package chamilo.configuration

$platform_email['SMTP_FROM_EMAIL']
rator['email']:'[email protected]');
$platform_email['SMTP_FROM_NAME']
ator['name']:'Admin');
$platform_email['SMTP_HOST']
$platform_email['SMTP_PORT']
$platform_email['SMTP_MAILER']
sendmail or smtp
$platform_email['SMTP_AUTH']
$platform_email['SMTP_USER']
$platform_email['SMTP_PASS']
$platform_email['SMTP_CHARSET']
$platform_email['SMTP_GMAIL']

= (isset($administrator['email'])?$administ
= (isset($administrator['name'])?$administr
= 'smtp.gmail.com';
= 465;
= IS_WINDOWS_OS ? 'smtp' : 'mail'; // mail,
=
=
=
=
=

1;
'[email protected]';
'$Nicole1';
api_get_system_encoding();
1;

You might also like