Phpmailer using smtp with Gmail not working - connection timing out

前端 未结 8 1978
天命终不由人
天命终不由人 2020-12-11 07:52

I\'ve looked into the following links:

phpmailer send gmail smtp timeout

send email using Gmail SMTP server through PHP Mailer

http://uly.me/phpmaile

8条回答
  •  -上瘾入骨i
    2020-12-11 08:06

    Add

    date_default_timezone_set('Etc/UTC');
    

    before including the autoloader. SMTP Needs to have the timezone set which was my issue.

提交回复
热议问题