天天看點

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      

這樣問題解決了,發送郵件成功!

記住!!!