firebasefirebase-authenticationbulk-email

how to send bulk emails from firebase console?


I am trying to find the feature in firebase console to send bulk emails to the registered users in the firebase. But not able to find one.

Please suggest me how can I send the bulk emails through the firebase console to the registered users with the email ids in the Firebase Authentication


Solution

  • There is no built-in feature to send bulk emails from Firebase. The only built-in email sending capacity is around signing in with Firebase Authentication, and the contents of those emails is tightly controlled by Firebase to prevent it being used for sending spam.

    If you want to send your own emails from Firebase you'll have to build it on top of Firebase, typically using Cloud Functions as sending email reliably is best done from a trusted environment.

    Two examples of sending emails from Firebase:

    Both of these require you to provide your own SMTP server details, which means you are in control of abuse prevention.