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