Home > Software design >  Does email sending functionality work in development local builds of react firebase projects?
Does email sending functionality work in development local builds of react firebase projects?

Time:01-16

I've created functionality to send a password reset email from this guide.

My code throws no errors and says that it sends the email to a valid email address but I receive no email.

The only reason I could think of that may cause this is that its running on a react local development build instead of the live build website.

Is it the case that firebase email functionality doesn't work on local builds?


I have checked my spam folder, checked filtering settings on multiple email addresses. It has no reason to be blocked by my inbox settings.

CodePudding user response:

Turns out its quite simple:

In order for emails to be sent from a domain, the code should be on the live build of the domain first.

  • Related