After creating user with email and password I am calling #sendEmailVerification()
. What I know is that Firebase create user with email and password first and then send verification mail to that user.
Tthis works fine if the user is accessible to that mail id and verify the mail which makes user.isEmailVerified = true
.
But, if user fails to verify mail or he/she can not access the provided mail, the email Id will get locked because the account is created with that email id.
My question is that what to do when user fails to verify email?