We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 53d1b30 + 44c668e commit b352c04Copy full SHA for b352c04
app/Notifications/SendPasswordReset.php
@@ -57,7 +57,7 @@ public function toMail($notifiable)
57
return (new MailMessage)
58
->subject('Reset Password')
59
->line('You are receiving this email because we received a password reset request for your account.')
60
- ->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)))
61
->line('If you did not request a password reset, no further action is required.');
62
}
63
0 commit comments