Laravel Homestead Swift Cannot send message without a sender address

前端 未结 14 990
予麋鹿
予麋鹿 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:07

    The file: /bootstrap/cache/config.php
    The change:

    'mail' => array(
                'driver' => 'smtp',
                'host' => 'mail.yourserversiteemail.com',
                'port' => '25',
                'from' =>
                array(
                    'address' => 'panel@yourserversiteemail.com',
                    'name' => 'sd',
                ),
                'encryption' => 'tls',
                'username' => 'yourUsername',
                'password' => 'yourPass',
                'sendmail' => '/usr/sbin/sendmail -bs',
    

提交回复
热议问题