发送带有内容类型的电子邮件-文本/纯文本 时间:2020-07-28 作者:Hubert Rębiałkowski 我对Wordpress中的电子邮件有问题。我必须发送内容类型为text/plain的消息,但在Wordpress中,默认内容类型为text/html。这种变化就像& 到&.如何更改内容类型?请帮忙。 1 个回复 最合适的回答,由SO网友:mozboz 整理而成 你没有说你是如何发送电子邮件的,但是如果你使用wp_mail, 以下是将类型更改为text/plain:function wp_set_mail_plaintext() { return \'text/plain\'; } add_filter( \'wp_mail_content_type\', \'wp_set_mail_plaintext\' ); 文章导航