1

I am trying to get the Firebase verification emails to send. I am using Xamarin to create my mobile app with the Xamarin.Firebase.Auth module. One of the answers of this question mentions having to upgrade the SDK version, but I am using the latest available.

I thought it could potentially be an issue that I have a custom domain set up in Firebase for the sent emails, so I reverted back to the default and it still doesn't work.

Yes, I have checked my spam folder. :)

Any other suggestions?

Here is my current test code snippet:

FirebaseAuth oAuth = FirebaseAuth.GetInstance(oApp);

oAuth.CreateUserWithEmailAndPassword(txtEmail.Text, txtPasswordConfirm.Text);

FirebaseUser oUser = oAuth.CurrentUser;

oUser.SendEmailVerification();
Tristan
  • 1,608
  • 1
  • 20
  • 34
  • https://stackoverflow.com/questions/37431128/firebase-confirmation-email-not-being-sent – SushiHangover Nov 10 '17 at 22:18
  • I linked to that question in mine. The only relevant part seemed to be the version comments, but like stated above I am using the latest. – Tristan Nov 10 '17 at 22:20
  • I do not have my C# code in front of me, but you have to do the send email *after* the auth request gives you a valid user. There are examples in that linked SO. – SushiHangover Nov 10 '17 at 22:46

0 Answers0