gpt4 book ai didi

PHP 将 cc 插入到邮件函数中

转载 作者:行者123 更新时间:2023-12-01 07:11:21 26 4
gpt4 key购买 nike

这个问题在这里已经有了答案:




9年前关闭。




Possible Duplicate:
PHP Mail, CC Field



我正在使用以下 php 发送电子邮件。我需要将 cc 添加到我的电子邮件中。当我尝试插入标题时,html 消息显示原始 html。处理 cc 的最佳方法是什么?

谢谢
$headers = "From: $from_email\r\nReply-To: $from_email";

$headers .= "Return-Path: <info@premierinspectiontn.com>";

//add boundary string and mime type specification
$headers .= "\r\nContent-Type: multipart/mixed; boundary=\"PHP-mixed-".$random_hash."\"";

最佳答案

刚刚测试了这个,它按预期工作:

$headers .= 'Cc: test@test.com\r\n';
$headers .= 'Bcc: test@test.com\r\n';

我还建议将您的回车和换行移到上一个条目的末尾 $headers
$headers = "From: $from_email\r\nReply-To: $from_email";
$headers .= 'Cc: test@test.com\r\n';
$headers .= 'Bcc: test@test.com\r\n';
$headers .= "Return-Path: <info@premierinspectiontn.com>\r\n";

// add boundary string and mime type specification
$headers .= "Content-Type: multipart/mixed; boundary=\"PHP-mixed-".$random_hash."\"";

希望有帮助

关于PHP 将 cc 插入到邮件函数中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9040866/

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