想要偷個懶。因為.env文件里面配置過了,所以config/mail.php的from參數不配置。結果報錯:Connection could not be established with host smtp.163.com。把from參數配置好,就正常了
2018-08-01
補上
$message->from('***@163.com','***');
$message->subject('郵件主題 測試');
第二種就能成功了。。
$message->from('***@163.com','***');
$message->subject('郵件主題 測試');
第二種就能成功了。。
2018-07-19