PHPMailer\PHPMailer\PHPMailer::encodeQP PHP Метод

encodeQP() публичный метод

According to RFC2045 section 6.7.
public encodeQP ( string $string ) : string
$string string The text to encode
Результат string
    public function encodeQP($string)
    {
        return quoted_printable_encode($string);
    }