PHPMailer\PHPMailer

PHPMailer::idnSupported()public staticWP 1.0

Tells whether IDNs (Internationalized Domain Names) are supported or not. This requires the intl and mbstring PHP extensions.

Method of the class: PHPMailer{}

No Hooks.

Return

true|false. true if required functions for IDN support are present

Usage

$result = PHPMailer::idnSupported();

PHPMailer::idnSupported() code WP 6.5.2

public static function idnSupported()
{
    return function_exists('idn_to_ascii') && function_exists('mb_convert_encoding');
}