PHP将cc插入邮件功能

时间:2012-01-27 22:24:12

标签: php email header carbon-copy

  

可能重复:
  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."\"";

2 个答案:

答案 0 :(得分:14)

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

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

希望有所帮助

答案 1 :(得分:0)

尝试添加

$headers .= 'CC: other@url.com' . "\r\n";