在php邮件功能中添加cc时邮件不发送

时间:2013-09-05 06:02:13

标签: php

您好我正在使用php邮件功能。当我在我的代码中添加cc标题时,邮件不会进行,当我评论cc标题行时,邮件将被发送出去。我怎样才能将邮件发送给cc人。 这是我的代码。

<?php

$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

// Additional headers
$headers .= 'From: ABC <abc@gmail.com>' . "\r\n";
$headers .= 'Cc: axyz@gmail.com' . "\r\n";

$done = mail('abc@gmail.com', 'Test subject', 'Test body', $headers);

if ($done)
    echo 'DONE';
else
    echo 'NOT DONE';
?>

1 个答案:

答案 0 :(得分:0)

只需删除\ r \ n之前的点(。)符号以及双引号。例如:

$headers  = 'MIME-Version: 1.0\r\n';
$headers .= 'Content-type: text/html; charset=iso-8859-1\r\n';

// Additional headers
$headers .= 'From: ABC <abc@gmail.com>\r\n';
$headers .= 'Cc: axyz@gmail.com\r\n';

尝试上面的代码,应该可以。