Hi Kris,
I have just had a glance through the code to double check and it uses the built in WordPress is_email() function to validate emails, the function for this can be found in jc-importer/app/templates/template-user.php on line 88
if ( ! empty( $data['user']['user_email'] ) && ! is_email( $data['user']['user_email'] ) ) {
throw new JCI_Exception( strval( $data['user']['user_email'] ) . " is not a valid email address", JCI_WARN );
}
If you comment out these lines in the code you can temporarily remove the email validation from the user template.
Is this happening to all the .ee addresses? or just one?
James
Thanks, this worked!
I didn’t check row by row but did seem to be all of the “.ee” ones.
Kris