在使用laravel5的auth:resetspasswords找回密码功能时报错如下:
failed to authenticate on smtp server with username xxx@qq.com using 1 possible authenticators**
后来发现是配置原因,因为使用的是qq邮箱,需要在qq邮箱中配置开启smtp设置
推荐:laravel教程
1.在qq邮箱中[设置]->[账户] 中打开pop3/smtp服务
2.laravel中修改.env文件 配置mail信息
3.在/config/mail.php中配置邮件发送人名称和地址
4.然后尝试点下密码重置
ok
以上就是关于laravel5.1中配置qq发送邮件的解决办法的详细内容。