class-wpmp-phpmailer.php
12 lines
| 1 | <?php |
| 2 | |
| 3 | class WPMP_PHPMailer extends PHPMailer\PHPMailer\PHPMailer { |
| 4 | public function encodeHeader( $str, $position = 'text' ) { |
| 5 | if( 'text' === $position && ( 0 === stripos( $str , '=?UTF-8?' ) || 0 === stripos( $str , '=?ISO-2022-JP?' ) ) ) { |
| 6 | return $str; |
| 7 | } |
| 8 | |
| 9 | return parent::encodeHeader( $str, $position ); |
| 10 | } |
| 11 | } |
| 12 |