3 Replies
In an attempt to verify the route registration, according to the
php artisan route:list --name=filament
command, I get the following output:
these routes are defined somewhere different than routes/web.php
.
On the Filament's UserResource $table, I have implemented a very simple action to send an email test to a given user of the users table like so:
When I click on send email, the mailpit does get the email message.
Then why doesn't the forgot password email sending is not arriving to mailpit? What do i need to debug to make it work?Hi.
The reset password notification is put in the job queue. Try to enable your queue if not. If you use horizon : php artisan horizon
You don't need horizon.
But you do need tot start the queue:
php artisan queue:work