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);
    }