【发布时间】:2017-06-21 02:51:05
【问题描述】:
我正在开发一个使用 PHPMailer 的程序。
我想更改电子邮件标题中的“Content-transfer-encoding”。
这是我的 eml 格式电子邮件标题示例。
MIME-Version: 1.0
Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: quoted-printable
但我想将“quoted-printable”更改为“base64”
MIME-Version: 1.0
Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: base64
有没有办法改变编码?
【问题讨论】:
标签: php email encoding phpmailer