我使用wp_mail发送我的WordPress主题的通知。如何在下面的wp_mail脚本中添加回复地址:
$recipient = "recipient@example.com";
$headers = array('Content-Type: text/html; charset=UTF-8','From: MyWebsite <'mywebsite@example.com'>');
$message = 'Here is the sent message';
wp_mail( $recipient, 'Here comes the Subject', $message, $headers );
字符串
2条答案
按热度按时间xpcnnkqh1#
您可以在
$headers
数组内部设置回复地址。它需要有电子邮件地址内的<>,我会建议使用一个名称,以确保一切正常工作。$headers[] = 'Reply-To: Firstname Lastname <your@mail.com>';
个我为你的电子邮件添加了主题。所以你的代码看起来像:
字符串
bnl4lu3b2#
下面是一个完整的例子,包括标题和附件。
字符串