自定义 Laravel 默认验证邮件更改标题

问题描述

我正在尝试更改和修改 Laravel 中的默认验证电子邮件,当您可以更改默认电子邮件的内容时,我找到了该文件,但在文件中它只有主题和我无法更改的行找到邮件头改了,哪里可以找到头行改?

The header I meant:

“你好”这个词

所在文件的代码

Vendor/Laravel/Framework/src/illuminate/Auth/Notifications/VerifyEmail.php
protected function buildMailMessage($url)
    {
        return (new MailMessage)
            ->subject(Lang::get('Verify Email Address'))
            ->line(Lang::get('Please click the button below to verify your email address.'))
            ->action(Lang::get('Verify Email Address'),$url)
            ->line(Lang::get('If you did not create an account,no further action is required.'));
    }

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)