我使用工匠评论
使用了默认身份验证php artisan make:auth
忘记密码按钮重设用户密码。它工作正常,但我需要更改密码重置邮件中的一些文本。例如,密码重置邮件中的 Hello 文本和问候文本。
通过使用评论php artisan make:notification MyResetPassword
,我可以覆盖现有的邮件模板,但只更改两个文本,我不想做那么多的更改。
有一个文件可以在ResetPassword.php
方法中更改toMail
中的某些邮件正文行。我需要知道如何使用此方法更改 Hello 和问候文本( toMail())。
我已经更改了我的邮件主题行,如下所示。
public function toMail($notifiable)
{
return (new MailMessage)
->subject('Company of Good Portal Dashboard - Reset Password')
->line('You are receiving this email because we received a password reset for your COG Portal – CMS account.')
->action('Reset Password', url(config('app.url').route('password.reset', $this->token, false)))
->line('If you did not request a password reset, no further action is required.');
}
请帮帮我。提前谢谢。
答案 0 :(得分:3)
试试这个
public function toMail($notifiable)
{
return (new MailMessage)
->subject('Aplikasi Peminjaman Cimahi Techno Park - Reset Password')
->greeting('Hello')
->line('Anda menerima email ini karena kami menerima permintaan reset password untuk akun anda.')
->action('Reset Password', url(config('app.url').route('password.reset', $this->token, false)))
->line('Jika anda tidak mengirimkan permintaan untuk reset password, abaikan email ini.')
->salutation('Terima Kasih,')
->salutation('Cimahi Techno Park');
}