PluginProbe ʕ •ᴥ•ʔ
WP Multibyte Patch / 2.9.1
WP Multibyte Patch v2.9.1
trunk 1.4.2 1.5 1.5.1 1.6 1.6.1 1.6.2 1.6.3 1.6.4 1.7 1.8 1.9 2.0 2.1.1 2.2 2.3 2.3.1 2.4 2.5 2.6 2.7 2.8 2.8.1 2.8.2 2.8.3 2.8.4 2.8.5 2.9 2.9.1 2.9.2 2.9.3
wp-multibyte-patch / includes / class-wpmp-phpmailer.php
wp-multibyte-patch / includes Last commit date
class-wpmp-phpmailer-wp68.php 1 year ago class-wpmp-phpmailer.php 5 years ago
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