gpt4 book ai didi

wordpress wp_mail 正在将我的 html 消息作为文本附件发送

转载 作者:行者123 更新时间:2023-12-03 06:54:47 24 4
gpt4 key购买 nike

这是发送邮件的代码:

$to = $_POST['leadEmail'];
$subject = "my subject";
$message = ( $_POST['leadEmailPref'] == "html" ) ? $messageh : $messagep ;
$headers[] = "From: My Name <ny_name@gmail.com>";
$headers[] = "Content-type: ".$_POST['leadEmailPref'] ;

wp_mail( $to, $subject, $message, $headers );

当我转到收件箱时,该邮件以附件形式发送,但我看不到该邮件。显然我不需要附件,并且我希望收到电子邮件的人立即看到该消息。

最佳答案

您的内容类型:是错误的。它应该是 text/htmltext/plain,而不是 html

$headers[] = "内容类型:文本/".$_POST['leadEmailPref'] ;

关于wordpress wp_mail 正在将我的 html 消息作为文本附件发送,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17488807/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com