wpcf7_is_email()CF7 1.0

Checks whether the given text is a well-formed email address.

Хуки из функции

Возвращает

null. Ничего (null).

Использование

wpcf7_is_email( $text );
$text (обязательный)
-

Код wpcf7_is_email() CF7 5.9.3

function wpcf7_is_email( $text ) {
	$result = is_email( $text );
	return apply_filters( 'wpcf7_is_email', $result, $text );
}