apply_filters( 'sanitize_email', string $sanitized_email, string $email, string|null $message )

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.


Top ↑

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.

Top ↑

Source

File: wp-includes/formatting.php. View all references

return apply_filters( 'sanitize_email', '', $email, 'email_too_short' );


Top ↑

Changelog

Changelog
Version Description
2.8.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.