Is there any way to manually change a user's email...
# support-questions
n
Is there any way to manually change a user's email verification status? I saw the docs weren't written yet so I thought I'd ask here for guidance
r
hey @Noodles there is. Which backedn SDK are you using? For example in node, you can see this function: https://supertokens.com/docs/nodejs/modules/recipe_emailverification.html#unverifyEmail-1 you can also unverify a user's email via the user management dashboard that we have.
n
I'm using node, is there a way to manually verify a user's email without them having to use a link?
r
Yea. Call the createEmailVerificationToken function to get the token, and then pass it to the verifyEmailUsingToken function to verify the user's email
n
Oh nice, thanks!
4 Views