Can I disable e-mail verification

Hello

How can i disable e-mail verification.

I just want to user don’t have to do nothig after registration.

I sign up the user like this:

this.auth0.signup({
connection: AUTH_CONFIG.connection,
email: ‘…@gmail.com’,
password: ‘…’,
username: ‘…’
},

There is any property or it’s impossible?

Thank you

You can turn the verification email off in the management console:

Hello

I turned it off, but when user sign up than the user email is pending.
And cannot login, because email verification is not accepted.

So can i set manually to user email address verified?

image

Yes, you can manually set "email_verified": true in the user’s profile.

Please keep in mind that if you’re doing account linking in your app, setting the email_verified property to true can open you up to security vulnerabilities. A good example of this is described in our docs: Use Verified Email in User Profiles