Laravel - 无法使用2个可能的身份验证器在SMTP服务器上进行身份验证

时间:2018-05-30 21:57:26

标签: laravel laravel-5 swiftmailer mailgun

我看到这些问题被多次询问。我尝试了很多,没有任何工作。我正在使用laravel和mailgun api发送电子邮件。

我正在查找此错误JSON.stringify(test.jsonString)以及我的专用服务器日志

Failed to authenticate on SMTP server with username "postmaster@noreplay.padelmatch.se" using 2 possible authenticators

我还创建了一个名称相同的电子邮件帐户(2018-05-30 13:37:32 dovecot_login authenticator failed for (domain.com) [198.20.114.174]:40412: 535 Incorrect authentication data (set_id=email@sub.subdomain.com) 2018-05-30 13:37:38 SMTP connection from (domain.com) [198.20.114.174]:40412 lost ),但仍无效。

在我的.env文件中,我有一个像这样的设置

email@sub.subdomain.com

任何想法我该如何解决?

谢谢。

1 个答案:

答案 0 :(得分:1)

我解决了。实际上这是一个愚蠢的事情。由于我使用的是mailgun所以我不需要使用smpt,因为它导致了问题。所以在邮件驱动程序中,我使用了MAIL_DRIVER = mailgun,这就是我案例的解决方案:)。希望它可以帮助一些孤独的googler ......