在laravel 5.4中更改重置密码邮件中的一些文本

时间:2017-10-26 06:05:15

标签: laravel-5

我使用工匠评论

使用了默认身份验证
  

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.');
}

请帮帮我。提前谢谢。

1 个答案:

答案 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');
    }