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();