Firebase email validation not working for hotmail?

Viewed 520

I have an doubt, until yesterday the Firebase Plugin for authentication on Flutter was working perfectly, but today we identify that email confirmation and password recorver is just working for gmail email accounts.

Even when i send the password recovery email from firebase website it doesn't reach the hotmail account and other specific domain email accounts.

Firebase has changed something? I don't find anything about until now

2 Answers

Firebase makes no distinction between email addresses based on the host. All outgoing verification emails go through the exact same flow.

So if the email doesn't reach users on a specific domain, it is because the email is being blocked on that domain's mail servers or somewhere along the way to that mail servers.

Typically this means that the messages are being flagged as spam in one of these layers. Be sure to check the spam folder of your mailbox, and if the message also isn't in there, check with your (and other upstream) administrators to see if it got caught before it reached your mailbox.

Yes this is definitely a problem I had as well. I have solved this during the development by going to outlook settings, then select "view all outlook settings". Then go to "junk email" and there under "safe senders and domains" we have to manually add the email address of the firebase domain e.g no-reply@...

This will not take effect immediately. It takes at least 15 minutes I believe.

Related