Import/Export extension not sending email verification

I am using the User Import/Export Extension to import users. I would also like the Verification email to be sent to these users after they are added to Auth0. I am using the following json code. The user is added to Auth0, with the correctly, but the verification email is not being sent out. I have to go to the user record and send it by hand.
{
“email”: “dina@test.com”,
“email_verified”: false,
“verify_email”: true,
“user_metadata” : {“name” : “Test, Dina”},
“app_metadata”: {“memberStatus” : “Active”}
}]

Any ideas why this is not working? I’m following these rules:

email_verified: boolean (optional) true if the user’s email is verified, false otherwise. If it is true then the user will not receive a verification email, unless verify_email: true was specified

verify_email: boolean (optional) If true, the user will receive a verification email after creation, even if created with email_verified set to true. If false, the user will not receive a verification email, even if created with email_verified set to false. If unspecified, defaults to the behavior determined by the value of email_verified.

Thanks,
Dina

2 Likes