Reputation: 171
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
Reputation: 333
In Firebase console you can find Templates tab in Authentication. There you can change sender name
refer at Customize the sender domain in https://support.google.com/firebase/answer/7000714
You should add domain in Firebase console.
You can also use SMTP for emails
Upvotes: 8
Reputation: 80914
You need to go to the firebase console ==> Authentication Part:
Click on the pencil to edit, then click customize domain:
works with password reset, email address verification, email address change.
Upvotes: 2