3

可能重复:
PHP 邮件、抄送字段

我正在使用以下 php 发送电子邮件。我需要将抄送添加到我的电子邮件中。当我尝试插入标题时,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."\"";
4

2 回答 2

16

刚刚对此进行了测试,它按预期工作:

$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."\"";

希望有帮助

于 2012-01-27T22:48:10.837 回答
0

尝试添加

$headers .= 'CC: other@url.com' . "\r\n";
于 2012-01-27T22:46:42.967 回答