Auto-fill emails when resetting password
This commit is contained in:
parent
0f93ba2495
commit
22da8d47c8
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ class SendPasswordReset extends Notification implements ShouldQueue
|
||||||
return (new MailMessage)
|
return (new MailMessage)
|
||||||
->subject('Reset Password')
|
->subject('Reset Password')
|
||||||
->line('You are receiving this email because we received a password reset request for your account.')
|
->line('You are receiving this email because we received a password reset request for your account.')
|
||||||
->action('Reset Password', url('auth/password/reset', $this->token))
|
->action('Reset Password', url('/auth/password/reset/' . $this->token . '?email=' . $notifiable->email))
|
||||||
->line('If you did not request a password reset, no further action is required.');
|
->line('If you did not request a password reset, no further action is required.');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue