我正在尝试更改和修改 Laravel 中的默认验证电子邮件,当您可以更改默认电子邮件的内容时,我找到了该文件,但在文件内它只有主题和我找不到标题的行电子邮件的标题行进行更改,那么我在哪里可以找到标题行并进行更改?
“你好”这个词
文件的代码位于
Vendor/Laravel/Framework/src/illuminate/Auth/Notifications/VerifyEmail.php
Run Code Online (Sandbox Code Playgroud)
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.'));
}
Run Code Online (Sandbox Code Playgroud)