Laravel Homestead Swift Cannot send message without a sender address

前端 未结 14 1025
予麋鹿
予麋鹿 2020-12-08 19:09

I get this error with stock email settings in Laravel 5.1 Homestead when I try to send a password reset mail.

Swift_TransportException in AbstractSmtpTransp         


        
14条回答
  •  猫巷女王i
    2020-12-08 20:02

    Make sure you have set the 'from' in app/config/mail.php

    'from' => ['address' => 'myname@gmail.com', 'name' => 'myname']
    

    It will fix the problem.

提交回复
热议问题