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