I have got several reports from Android users that they are not receiving the verification email from firebase. I am not sure this is an issue with spam or other filters but I have got no complaints from iOS users, so this is strange and I guess this is an issue with Android only.
Here are my questions:
- Is there anything I need to do in my client when sending the verification email?
- Is there a way to see in firebase console if the email is sent or not?
For reference, I am using flutter and I am using email sign-in.
Here is my code
final newUser = await _auth.createUserWithEmailAndPassword(email: email, password: password);
try {
await newUser.user.sendEmailVerification();
} catch (e) {
print("An error occured while trying to send email verification");
print(e.message);
}
Many thanks!!