解决laravel5 发送邮件提示:cannot send message without a sender address
时间:2019-10-31 14:25
首先,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的详细内容,更多请关注gxlsystem.com其它相关文章!