Customising the Filament Password Reset Email
I have just launched filament a site today which requires existing users to reset their passwords to gain access.
The issue I am having is that they are using sendgrid which is adding tracking to the password reset links which breaks them. To fix this I need to add
The issue I am having is that they are using sendgrid which is adding tracking to the password reset links which breaks them. To fix this I need to add
clicktracking="off"
to the achors. I have updated the button component in my mail them to do this so they can get access be I need to also update the text link at the bottom of the email.
Can anyone point me in the right direction so I can publish the template for the password reset email?Solution:Jump to solution
@Dave2084 Filament is using default Laravel email templates, I think this should help you:
https://laravel.com/docs/11.x/mail#customizing-the-components:~:text=mail%3A%3Atable%3E-,Customizing%20the%20Components,-You%20may%20export...
Laravel - The PHP Framework For Web Artisans
Laravel is a PHP web application framework with expressive, elegant syntax. We’ve already laid the foundation — freeing you to create without sweating the small things.
3 Replies
Solution
@Dave2084 Filament is using default Laravel email templates, I think this should help you:
https://laravel.com/docs/11.x/mail#customizing-the-components:~:text=mail%3A%3Atable%3E-,Customizing%20the%20Components,-You%20may%20export
Laravel - The PHP Framework For Web Artisans
Laravel is a PHP web application framework with expressive, elegant syntax. We’ve already laid the foundation — freeing you to create without sweating the small things.
This is the path to the component that you have to export
@Patiphan Thanks!