PHPMailer\PHPMailer

PHPMailer::encodeQP()publicWP 1.0

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

Method of the class: PHPMailer{}

No Hooks.

Return

String.

Usage

$PHPMailer = new PHPMailer();
$PHPMailer->encodeQP( $string );
$string(string) (required)
The text to encode

PHPMailer::encodeQP() code WP 6.5.2

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