首先,laravel 5 的郵件配置,統一在.env 檔案裡面,我們把他配置好
MAIL_DRIVER=smtp MAIL_HOST=smtp.ym.163.com MAIL_PORT=25 MAIL_USERNAME=账号 MAIL_PASSWORD=密码
當我們配置好了以後,發送郵件還是提示錯誤
cannot send message without a sender address
這是因為我們需要去修改一下mail.php 設定檔
開啟config/mail.php 找到from 設定項
'from' => ['address' => null, 'name' => null],
我們需要設定寄件位址,和顯示的暱稱,把這兩項配置好了就ok啦~
相關推薦:laravel開發
#以上是解決laravel5 發送郵件提示:cannot send message without a sender address的詳細內容。更多資訊請關注PHP中文網其他相關文章!