PHPMailer\PHPMailer\PHPMailer::encodeQP PHP Method

encodeQP() public method

According to RFC2045 section 6.7.
public encodeQP ( string $string ) : string
$string string The text to encode
return string
    public function encodeQP($string)
    {
        return quoted_printable_encode($string);
    }