-2

I want to send confirmation email when user registers in iOS application.

I have searched a lot. I find only verification using Firebase. But can we do confirmation email using Firebase.

Paulo Mattos
  • 18,845
  • 10
  • 77
  • 85
Nihar Dodiya
  • 135
  • 1
  • 9
  • Your question isn't clear. Anyway, take a look at this other similar question: https://stackoverflow.com/questions/42616809/sending-automated-emails-from-firebase-through-google-cloud-platform-no-third-p – Domenico Jan 22 '19 at 20:15

1 Answers1

1

Firebase Authentication does not have a built-in option to send a confirmation email. If you need this functionality, you will have to build it yourself.

There is a great example of how to send a welcome email in the function-samples repo.

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807