【发布时间】:2016-01-12 11:45:03
【问题描述】:
你好,这是我发送电子邮件的 php 代码,当发送邮件时,密件抄送部分中的地址不会收到电子邮件:
<?php
$to = "abc@abc.com";
$subject = 'Form Submited To ABC Website';
$headers = "From: online@abc.com \r\n";
$headers .= "Bcc: info@abc.com \r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=utf-8\r\n";
?>
出于保密原因,这些邮件不是 rals 的
【问题讨论】: