Laravel 5.7 更改验证邮件发件人
Laravel 5.7 change verification mail sender
目前,当发送 Laravel 用户验证邮件时,发件人为 hello@example.com
,姓名为 Example
。如何在不更改供应商目录中的文件的情况下修改这些值(例如 php artisan vendor:publish
,但是什么?)。我查看了 this question、\Illuminate\Auth\Notifications\VerifyEmail.php
和 \Illuminate\Auth\MustVerifyEmail.php
,但是虽然声明了降价模板(我已将其发布到我的资源中以对其进行一些调整),但没有实际发送带有发件人和发件人姓名的邮件的代码!?
可以在 config/mail.php
中找到,请参阅代码段:
'from' => [
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
'name' => env('MAIL_FROM_NAME', 'Example'),
],
将这些值添加到您的 .env
文件中,它应该是好的。
目前,当发送 Laravel 用户验证邮件时,发件人为 hello@example.com
,姓名为 Example
。如何在不更改供应商目录中的文件的情况下修改这些值(例如 php artisan vendor:publish
,但是什么?)。我查看了 this question、\Illuminate\Auth\Notifications\VerifyEmail.php
和 \Illuminate\Auth\MustVerifyEmail.php
,但是虽然声明了降价模板(我已将其发布到我的资源中以对其进行一些调整),但没有实际发送带有发件人和发件人姓名的邮件的代码!?
可以在 config/mail.php
中找到,请参阅代码段:
'from' => [
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
'name' => env('MAIL_FROM_NAME', 'Example'),
],
将这些值添加到您的 .env
文件中,它应该是好的。