PHPMailer\PHPMailer
PHPMailer::encodeQP
Encode a string in quoted-printable format. According to RFC2045 section 6.7.
Method of the class: PHPMailer{}
No Hooks.
Returns
String.
Usage
$PHPMailer = new PHPMailer(); $PHPMailer->encodeQP( $string );
- $string(string) (required)
- The text to encode.
PHPMailer::encodeQP() PHPMailer::encodeQP code WP 7.0
public function encodeQP($string)
{
return static::normalizeBreaks(quoted_printable_encode($string));
}