Email verification without sending emails?
-
Is there a way to enable email verification with FusionAuth simply generating the
verificationIdupon user registration and not sending any emails?From my observation, if we toggle on Verify email we are forced to select a email template, and upon user registration , FusionAuth sends the verification email.
-
You could use the
skipVerificationparameter (set it to true) on the user or registration create statement, and then the https://fusionauth.io/docs/v1/tech/apis/users#resend-verification-email call with sendVerifyEmail set to false.This would give you a
verificationIdyou could use with this API call: https://fusionauth.io/docs/v1/tech/apis/users#verify-a-users-email