我遇到一个与wp_mail()有关的奇怪问题 - 对于某些管理员用户,已发送的邮件包含
Content-Transfer-Encoding:quoted-printable
标题,它会破坏电子邮件的HTML。
我正在使用:
add_filter('wp_mail_content_type', create_function('', 'return "text/html";'));
add_filter('wp_mail_charset', create_function('', 'return "UTF-8";'));
定义内容类型和字符集。
此标头不会为其他用户添加,并且相同的电子邮件脚本会正常发送。
还有其他人遇到过这个吗?这是怎么回事?谢谢!