Reset email missing APP_URL as part of the reset link
Solved
My reset links are being sent like this, without my base url. It's also using http and not https, as my app_url denotes (my side loads properly with https as well).
http://password/reset/{token}?email={email}
All my code for this is intact from doing my initial wave install
return env('APP_URL').'/password/reset/'.$token.'?email='.$user->email;
and my APP_URL in my env file is correct:
APP_URL=https://myurl.com
Any ideas?
I made a password reset with notification by email, like this :
$url = url('/reset-password/user/'.$this->token);
return (new MailMessage)
->subject('Subject Mail')
->line('Description Mail.')
->action('Button Reset Password', url($url));
Report
2















