Reset Firebase Authentication Password

I am using an API to reset password with the web component

Doing so will send a password reset email to the user.
I don’t know if it’s possible, but is it possible to customize this password reset sending, including the user’s name and email?

Do you want to modify the appearance of the email? If so, you’re in the right place.

As you can see, it’s written in HTML, and you can customize it however you like.
What you see between %% is a dynamic element that automatically adapts based on who received the email.
%APP_NAME% is the name of your app.
%EMAIL% is the email of the person who requested the password reset.

Usefull link

Hi,
It should work

You need to do two things:

    1. Edit the Email Template: Add a new placeholder (e.g., %USER_NAME% or %DISPLAY_NAME%) to the email content where you want the name to appear.
    1. Update the API Call: Make sure your Kodular block sends the user’s name (along with the email) to the API endpoint.
      The API must support this extra data.

The problem is how to do this in Kodular. How to replace this data:
%FIRST_NAME% - txt_name (txt_nome)
%EMAIL% - txt_email (txt_email)

The %FIRST_NAME% placeholder doesn’t exist, read the guide I linked in my previous reply.

To achieve this, you’d need to handle the password reset emails through your own mail server (or rely on an online service).
It’s a bit complex, but not impossible.

1 Like

I think I’ll leave it as is. If I want to do something along these lines in the future, I’ll come back to this same thread.
Thank you for your guidance.