Laravel 5.3重新定义“重置电子邮件”刀片模板

时间:2016-09-05 09:50:38

标签: laravel-5.3

如何在Laravel 5.3中自定义重置电子邮件刀片模板的路径?

使用的模板是:vendor/laravel/framework/src/Illuminate/Notifications/resources/views/email.blade.php

我想建立自己的。

此外,如何更改此预设的电子邮件的文字:vendor/laravel/framework/src/Illuminate/Auth/Notifications/ResetPassword.php

public function toMail()
{
    return (new MailMessage)
        ->line([
            'You are receiving this email because we received a password reset request for your account.',
            'Click the button below to reset your password:',
        ])
        ->action('Reset Password', url('password/reset', $this->token))
        ->line('If you did not request a password reset, no further action is required.');
}

3 个答案:

答案 0 :(得分:34)

要更改模板,您应该使用artisan命令php artisan vendor:publish它将在resources/views/vendor目录中创建刀片模板。要更改电子邮件的文本,您应该覆盖User模型上的sendPasswordResetNotification方法。这里将在重置电子邮件自定义部分中https://laravel.com/docs/5.3/passwords进行说明。

您必须向用户模型添加新方法。

public function sendPasswordResetNotification($token)
{
    $this->notify(new ResetPasswordNotification($token));
}

并使用您自己的类进行通知,而不是使用ResetPasswordNotification。

更新:for @ lewis4u request

分步说明:

  1. 要创建新的通知类,必须使用此命令行php artisan make:notification MyResetPassword。它将在app / Notifications目录中创建一个新的Notification Class'MyResetPassword'。

  2. use App\Notifications\MyResetPassword;添加到您的用户模型

  3. 为您的用户模型添加新方法。

    public function sendPasswordResetNotification($token)
    {
        $this->notify(new MyResetPassword($token));
    }
    
  4. 运行php artisan command php artisan vendor:publish --tag=laravel-notifications运行此命令后,邮件通知模板将位于resources / views / vendor / notifications目录中。

  5. 如果您愿意,请修改MyResetPassword班级方法toMail()。这里描述了https://laravel.com/docs/5.3/notifications

  6. 如果您愿意,可以编辑您的电子邮件刀片模板。这是resources/views/vendor/notifications/email.blade.php

  7. 加分: Laracast视频:https://laracasts.com/series/whats-new-in-laravel-5-3/episodes/9

    PS:感谢@Garric15提出有关php artisan make:notification

    的建议

答案 1 :(得分:12)

我想详细说明一个非常有用的Eugen’s answer,但没有足够的声誉来发表评论。

如果您想拥有自己的目录结构,则不必使用发布到views/vendor/notifications/..的Blade模板。当您创建新的Notification类并开始构建MailMessage类时,它有一个view()方法可用于覆盖默认视图:

/**
 * Get the mail representation of the notification.
 *
 * @param  mixed  $notifiable
 * @return \Illuminate\Notifications\Messages\MailMessage
 */
public function toMail($notifiable)
{
    return (new MailMessage)
        ->view('emails.password_reset');
        // resources/views/emails/password_reset.blade.php will be used instead.
}

答案 2 :(得分:0)

除了上述Laravel 5.6的答案外,在此处将数组中的变量传递到自定义电子邮件模板也更容易。

/**
 * Get the mail representation of the notification.
 *
 * @param  mixed  $notifiable
 * @return \Illuminate\Notifications\Messages\MailMessage
 */
public function toMail($notifiable)
{
$url = url('/invoice/'.$this->invoice->id);

return (new MailMessage)
            ->subject('Invoice Paid')
            ->markdown('emails.password_reset', ['url' => $url]);

}

https://laravel.com/docs/5.6/notifications