Hi!
I’m trying to activate the MFA email factor on my Auth0 setup but I can"t achieve it.
I have:
-
Enabled email factor in https://manage.auth0.com/dashboard/eu//security/mfa (OTP and SMS are also activated)
-
Set the Require Multi-factor Auth policy to never
-
I’m using the New Universal Login
-
Created a rule to activate MFA on a dedicated application
function (user, context, callback) {var CLIENTS_WITH_MFA=[ "<my-application-id>", ]; if (CLIENTS_WITH_MFA.indexOf(context.clientID) !== -1) { context.multifactor = { provider: 'any', // Require MFA with any provider enabled in the dashboard //allowRememberBrowser: false // Uncomment to disablle Remember Me MFA feature }; } callback(null, user, context);
}
-
Setup Sendgrid configuration for the mail sent
When I try to authenticate the MFA page first propose me the OTP factor, and when I click on “use another method” it’s only displaying Google-Authenticator (OTP) and SMS, not email.
Can you help me how to fully setup email factor?