this is the code we run in the core rto check for eemail validity:
Copy code
public static boolean isValidEmail(String email) {
// We use the same regex as the backend SDK
// https://github.com/supertokens/supertokens-node/blob/master/lib/ts/recipe/emailpassword/utils.ts#L250
String regexPatternForEmail =
"((^<>()[].,;:@]+(.^<>()[].,;:@]+)*)|(.+))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}" +
".[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$";
return patternMatcher(email, regexPatternForEmail);
}
rp_st
11/13/2023, 7:05 PM
i think that should allow have allowed your email..
SuperTokens is an open source authentication solution offering features like: Different types of login: Email / password, Passwordless (OTP or Magic link based).