試圖發送電子郵件與Swiftmailer,我得到了這個錯誤。我和配置swiftmailer:連接無法建立主機smtp.gmail.com
transport: smtp
host: smtp.gmail.com
username: [email protected]
password: password
port: 587
encryption: ssl
我總是收到此錯誤信息:
Connection could not be established with host smtp.gmail.com
我也試過用:
transport: gmail
host: smtp.gmail.com
username: [email protected]
password: password
port: 587
encryption: ssl
完整錯誤訊息是
[YYYY-mm-dd hh:ii:ss] app.ERROR: Exception occurred while flushing email queue: Connection could not be established with host smtp.gmail.com [ #0]
其他問題:
我的情況是this不同。在我的情況下,我沒有Avast殺毒軟件。
編輯:在
Exception occurred while flushing email queue: Failed to authenticate on SMTP server with username "my email address" using 1 possible authenticators
端口587不是SSL。您可能需要端口465.請參閱[這裏](https://www.lifewire.com/what-are-the-gmail-smtp-settings-1170854)。 –
您可能需要按照[此處]所述切換_「使用安全性較低的應用程序」_設置(https://stackoverflow.com/questions/29098781/script-sending-mails-with-gmail-failed-to-authenticate- SMTP服務器上)。 –
已經完成。感謝您的建議。 – sensorario