Laravel 5.7更改验证邮件发件人

时间:2019-03-17 16:59:33

标签: php laravel laravel-5 email-verification

当前,当发送Laravel用户验证邮件时,发件人为hello@example.com,名称为Example。如何在不更改供应商目录中的文件的情况下修改这些值(例如php artisan vendor:publish,但是呢?)。我看过this question\Illuminate\Auth\Notifications\VerifyEmail.php\Illuminate\Auth\MustVerifyEmail.php,但是声明了一个markdown模板(我已经发布到我的资源中对其进行了一些调整),但是没有实际发送带有发件人和发件人名称的邮件的代码!?

1 个答案:

答案 0 :(得分:0)

可以在config/mail.php中找到它,请参见代码段:

    'from' => [
        'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
        'name' => env('MAIL_FROM_NAME', 'Example'),
    ],

将值添加到您的.env文件中,应该很好。