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