Daniel Jones
Daniel Jones

Reputation: 171

Changing app 'sent from' email address in Firebase

I was just creating the 'reset password' section for my app using Firebase (built for iOS with Swift) and wondered if I was able to change the email address that the reset password link is sent from?

For example, instead of it being '[email protected]', could I change it to '[email protected]'?

I can't seem to find anything on how this can be done and I guess it's not really hugely important but it's just something I might want to change in the future.

Upvotes: 4

Views: 1785

Answers (2)

Ajesh
Ajesh

Reputation: 333

In Firebase console you can find Templates tab in Authentication. There you can change sender name template settings

refer at Customize the sender domain in https://support.google.com/firebase/answer/7000714

You should add domain in Firebase console. customize sender domain

You can also use SMTP for emails enter image description here

Upvotes: 8

Peter Haddad
Peter Haddad

Reputation: 80914

You need to go to the firebase console ==> Authentication Part:

Authentication console

Click on the pencil to edit, then click customize domain:

enter image description here

works with password reset, email address verification, email address change.

Upvotes: 2

Related Questions