Change email for unverified user ?
Is there a way to change the email of a user that hasn't been verified ? For exemple this cover the case a user register miss type the email and want to change to his good one.
4 Replies
Or should i do that with my orm and than make the call on auth.api to send email verification ?
Yes, it is possible. The verification request will directly go to the new email.
If the email is already verified, the email will go through the currently verified email first. Then you would have to initiate a verification request afterwards to the new email.
The methods are
authClient.changeEmail
for changing the email and authClient.sendVerificationEmail
No the goal here is if a user hasn't verified there email and isn't logged in since we it must be verified to login. Imagine a user making a typo at register in there email then they will never be able to verify it
If you require verification then yes. Just create a new one in that case.
If the email with a typo is gonna be used by another user then you can just make a forgot password flow