所属分类:php教程
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的详细内容,更多请关注zzsucai网其它相关文章!