Update password reset email

This commit is contained in:
2024-08-03 10:47:08 +10:00
parent 0469d64577
commit df3f7e31be
3 changed files with 9 additions and 6 deletions

View File

@@ -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 */

View File

@@ -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),