Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to modify Email Confirmation message - Firebase

I am using email & password authentication provided by Firebase.

Below is the message the user gets, when they confirm their email address. Is there any way to customize the below message.

I would like to add a link to this message so that the users can be directed to the website. Can someone please suggest, how I could achieve this.

enter image description here

like image 639
kurrodu Avatar asked Sep 13 '16 12:09

kurrodu


People also ask

How does Firebase email verification work?

You can use Firebase Authentication to sign in a user by sending them an email containing a link, which they can click to sign in. In the process, the user's email address is also verified. There are numerous benefits to signing in by email: Low friction sign-up and sign-in.


1 Answers

You can customize this page by setting up a custom email action handler.

From there:

To customize your Firebase project's email action handler, you must create and host a web page that uses the Firebase JavaScript SDK to verify the request's validity and complete the request. Then, you must customize your Firebase project's email templates to link to your custom action handler.

But you should really just follow the link and read the entire page on the Firebase site as it contains a great description and sample code.

like image 129
Frank van Puffelen Avatar answered Oct 25 '22 16:10

Frank van Puffelen