Filters a sanitized email address.
Description
This filter is evaluated under several contexts, including ’email_too_short’, ’email_no_at’, ‘local_invalid_chars’, ‘domain_period_sequence’, ‘domain_period_limits’, ‘domain_no_periods’, ‘domain_no_valid_subs’, or no context.
Parameters
$sanitized_email
string- The sanitized email address.
$email
string- The email address, as provided to sanitize_email() .
More Arguments from sanitize_email( … $email )
Email address to filter. $message
string|null- A message to pass to the user. null if email is sanitized.
Source
return apply_filters( 'sanitize_email', '', $email, 'email_too_short' );
Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.