Merge branch 'develop' into feature/react-admin

This commit is contained in:
Matthew Penner 2021-01-03 18:18:06 -07:00
commit 5636c25838
14 changed files with 90 additions and 108 deletions

View file

@ -57,7 +57,7 @@ class SendPasswordReset extends Notification implements ShouldQueue
return (new MailMessage)
->subject('Reset Password')
->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 . '?email=' . $notifiable->email))
->action('Reset Password', url('/auth/password/reset/' . $this->token . '?email=' . urlencode($notifiable->email)))
->line('If you did not request a password reset, no further action is required.');
}
}