Is mail feature in v11.28 working with Gmail? #6004
Unanswered
Ringoinmel
asked this question in
General
Replies: 2 comments 1 reply
-
Check error log and it said Any idea? |
Beta Was this translation helpful? Give feedback.
1 reply
-
Anyone can help? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I put all SMTP settings to \chamilo\app\config\mail.conf.php and try to send mail when I give the comments to the assignment as below.
But the student haven't receive the comments by email. Here is what the settings I put it.
$platform_email['SMTP_FROM_EMAIL'] = '[email protected]'; //See the function __construct() in main/inc/lib/notification.lib.php for more details on how the SMTP FROM email is defined and what to indicate here if needed to override users configuration
$platform_email['SMTP_FROM_NAME'] = 'Summit Learning';
$platform_email['SMTP_HOST'] = 'smtp.gmail.com'; // If using SMTP use the domain name example: mywebmail.example.net
$platform_email['SMTP_PORT'] = 587;
$platform_email['SMTP_MAILER'] = 'smtp.gmail.com'; // mail, sendmail or smtp (Windows probably only supports smtp)
$platform_email['SMTP_AUTH'] = 1;
$platform_email['SMTP_USER'] = '[email protected]';
$platform_email['SMTP_PASS'] = 'xxxxxxxxxxxxx';
$platform_email['SMTP_CHARSET'] = 'UTF-8';
$platform_email['SMTP_UNIQUE_SENDER'] = 0; // to send all mails from the same user
$platform_email['SMTP_DEBUG'] = 0; // change to 1 to enable smtp debug
$platform_email['SMTP_SECURE'] = 'tls'; // if you're using SSL: ssl; or TLS: tls. (only used if SMTP_AUTH==1)
$platform_email['SMTP_UNIQUE_REPLY_TO'] = 0; // to use AWS SMS service, SMTP_UNIQUE_SENDER and this have to be = 1
Beta Was this translation helpful? Give feedback.
All reactions