我将Laravel Mail驱动程序设置为打印到我的日志
文件:
'driver' => env('MAIL_DRIVER','log'),
但是,当我发送邮件时,我收到swiftmail身份验证错误:
Expected response code 250 but got code ‘530’ with message ‘530 5.7.1
Authentication required’
06001
line 383\”>AbstractSmtpTransport.PHP line 383
06002
我需要在某处设置另一个设置吗?为什么要尝试使用swiftmailer?
这是在你的Mail.
PHP配置文件中…
使用时
'driver' => env('MAIL_DRIVER',
这将在.env文件中设置MAIL_DRIVER环境变量.在这种情况下,如果未在.env文件中指定值,则“log”仅用作默认值…您的.env文件可能仍然设置在其中…将其设置为日志…
MAIL_DRIVER=smtp
用…来代替
MAIL_DRIVER=log