主题中的WP_mail编码‘(&R

时间:2016-01-26 作者:benoît

我创建了一个函数来为自定义帖子发送邮件(法语),这是可行的,但主题是用html编码的。

我这样做:

$get_title = get_the_title($ID);
wp_mail("[email protected]","new article : ".$get_title,"The message is OK with é è à",$headers);
我的电子邮件来源如下

X-Mailer: PHPMailer 5.2.14 (https://github.com/PHPMailer/PHPMailer)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
我得到了这个主题«新文章:it’s不正常»。

1 个回复
SO网友:benoît

它看起来还可以:html_entity_decode

wp_mail("[email protected]","new article : ".html_entity_decode($get_title),"The message is OK with é è à",$headers);
不太好,再试试:

wp_mail("[email protected]","new article : ".$post->post_title,"The message is OK with é è à",$headers);

相关推荐

Encoding Method for URLs?

WordPress是否有一种编码URL的方法或API,类似于在URL中使用标题时生成部分URL的方式?我正在编写一个生成URL的插件,并希望使用与其他所有插件相同的方法。例如,我在标题中键入“这是我的博客文章”,然后生成“这是我的博客文章”。