Whitelist multiple email domains
-
I want to whitelist multiple email domains.
I see you have posted a way to whitelist a single domain. But what if you want to whitelist multiple domains? I tried this, but it didn’t work. Any email address can be used to register.
add_action('um_before_new_user_register', 'require_google_email_for_signup'); function require_google_email_for_signup( $args ) { extract($args); $patterns = array('@yahoo.com','@gmail.com','@hotmail.com'); foreach ($patterns as $pattern) { if (!strstr($user_email, $pattern)) { wp_safe_redirect( add_query_arg('err', 'you_must_have_googlemail') ); } } }
Viewing 11 replies - 1 through 11 (of 11 total)
Viewing 11 replies - 1 through 11 (of 11 total)
- The topic ‘Whitelist multiple email domains’ is closed to new replies.