>  기사  >  백엔드 개발  >  解决laravel 5 发送邮件提示:cannot send message without a sender address

解决laravel 5 发送邮件提示:cannot send message without a sender address

WBOY
WBOY원래의
2016-06-20 12:52:361351검색

首先,laravel 5 的邮件配置,统一在 .env 文件里面,我们把他配置好

<br />MAIL_DRIVER=smtpMAIL_HOST=smtp.ym.163.comMAIL_PORT=25MAIL_USERNAME=账号MAIL_PASSWORD=密码

当我们配置好了以后,发送邮件还是提示错误

cannot send message without a sender address

这是因为我们需要去修改一下 mail.php 配置文件

打开 config/mail.php 找到 from 配置项

<br />'from' => ['address' => null, 'name' => null],

我们需要配置发件地址,和显示的昵称,把这两项配置好了就ok啦~

欢迎加入 laravel 学习小组:365969825 一起学习

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.