I am using Firebase in my app and one of the things that I added recently was the option to send a reset password link.
When the user receives the email it looks as follows:
Is there any option to read certain data from my Firebase firestore and display it in the email?
For example, when user1 registered to the app he needed to set an email and a username (say: user1_cool). Now, when user1 sent himself a reset link I had like it to show:
Hello user1_cool, ... From this link, it seems impossible but still was wondering if someone found a way.
Right now my email is as follows:
<p>Hello %DISPLAY_NAME%,</p> <p>Follow this link to reset your password for your %EMAIL% account.</p> <p><a href='%LINK%'>%LINK%</a></p> <p>If you didn’t ask to reset your password, you can ignore this email.</p> <p>Thanks,</p> <p>NeighborBook team</p> Thank you
