发送带有内容类型的电子邮件-文本/纯文本

时间: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\' );

相关推荐

Adding multiple emails to a

我继承了一个WordPress站点,该站点有很多看起来像是引导的自定义代码。一个联系人表单编码在一个PHP文件中,客户端希望添加更多的电子邮件地址,以便将提交内容发送到。我已经找到了发送电子邮件的代码,但我想确保我正确更新了它,而不是破坏它。以下是代码行:$emails = array( $email, \'[email protected]\' );我假设我需要将其更新为$emails = array( $email, \'[email protected], [email protected]\' );或$e