PHPMailer\PHPMailer

PHPMailer::encodeQP()publicWP 1.0

Encode a string in quoted-printable format. According to RFC2045 section 6.7.

Метод класса: PHPMailer{}

Хуков нет.

Возвращает

Строку.

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

$PHPMailer = new PHPMailer();
$PHPMailer->encodeQP( $string );
$string(строка) (обязательный)
The text to encode

Код PHPMailer::encodeQP() WP 6.5.2

public function encodeQP($string)
{
    return static::normalizeBreaks(quoted_printable_encode($string));
}