Password reset by email don't work.
I have tried the password reset and email verification feature to my filamentphp project but it doesn't work.
It gives me a message that we have sent email but it doesn't send email actually,
I have tried to log emails, using smtp. All don't work.
Can anyone help me please!!
8 Replies
Can you please provide your code/setup. Can you see anything in your email providers logs?
or laravel log?
Nothing is logged, i have inspected the Laravel log, but i see nothing even i tried gmail smtp but i don't get email
you've enabled ->passwordReset() in the AdminPanelProvider right?
do you have multiple panels?
do you get a sucess message on the frontend?
Yeah i have enabled it and i have only one panel
Yes
Smtp must be incorrect then or missing parts, send over .env smtp without key/password
Okay soon
MAIL_MAILER=smtp
MAIL_HOST=smtp.gmail.co
MAIL_PORT=587
[email protected]
MAIL_PASSWORD=password
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS="[email protected]"
MAIL_FROM_NAME="${APP_NAME}"
sorry its smtp.gmail.com, not smtp.gmail.co
and here is the client response
Check with Google I think there may have been some recent changes to their smtp server.
But your env looks ok to me.
Could also be a config in your app where it’s getting pushed to a queue and you’re not running a queue worker. So check that too.