Update password reset email
This commit is contained in:
@@ -72,7 +72,8 @@ class User extends Authenticatable implements IDs
|
||||
*/
|
||||
public function sendPasswordResetNotification($token)
|
||||
{
|
||||
$this->notify((new ResetPasswordNotification($token))->onQueue('high'));
|
||||
$this->notify((new ResetPasswordNotification($token))
|
||||
->onQueue('user'));
|
||||
}
|
||||
|
||||
/* INTERFACES */
|
||||
|
@@ -25,7 +25,7 @@ class ResetPassword extends ResetPasswordNotification implements ShouldQueue
|
||||
}
|
||||
|
||||
return (new MailMessage)
|
||||
->markdown('email.user.passwordreset',[
|
||||
->markdown('mail.password.reset',[
|
||||
'site'=>$notifiable->site,
|
||||
'user'=>$notifiable,
|
||||
'reset_link'=>route('password.reset',$this->token,true),
|
||||
|
Reference in New Issue
Block a user