天天看点

Laravel消息通知发送邮件 Expected response code 250 but got code

当时.env邮箱配置如下:

MAIL_DRIVER=smtp
 MAIL_HOST=smtp.163.com
 MAIL_PORT=25
 [email protected]
 MAIL_PASSWORD=1xxxxx71987
 MAIL_ENCRYPTION=null      

但是我们注意一下config/mail.PHP中有两项

‘from‘ => [
 ‘address‘ => env(‘MAIL_FROM_ADDRESS‘, ‘[email protected]‘),
 ‘name‘ => env(‘MAIL_FROM_NAME‘, ‘Example‘),
 ],      

这里的MAIL_FROM_ADDRESS,MAIL_FROM_NAME在配置文件中是没有的。所以我们应该加到.env中

最后配置如下:

MAIL_DRIVER=smtp
 MAIL_HOST=smtp.163.com
 MAIL_PORT=25
 [email protected]
 MAIL_PASSWORD=1xxxxx71987
 MAIL_ENCRYPTION=null
 [email protected]
 MAIL_FROM_NAME=132      

这样问题解决了,发送邮件成功!

记住!!!