PHP表单 - 不是从电子邮件表单发送的密件抄送邮件

时间:2015-10-14 11:46:58

标签: php email bcc

你好这里是我发送电子邮件的php代码,当发送邮件时,bcc部分的地址没有收到电子邮件:

<?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";
?>

由于保密原因,邮件不是真正的邮件

1 个答案:

答案 0 :(得分:0)

PHP mail()语法是:

bool mail ( string $to , string $subject , string $message [, string $additional_headers [, string $additional_parameters ]] )

查找以下代码以获得更多理解。

<?php
// multiple recipients
$to  = 'aidan@example.com' . ', '; // note the comma, if you have multiple or else no comma.
$to .= 'wez@example.com';

// subject
$subject = 'Hello';

// message
$message = '<html><body><h2>Testing MSG</h2></body>';

// To send HTML mail, the Content-type header must be set
$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

// Additional headers
$headers .= 'To: Jiten <Jiten@example.com>, Kelly <hi@example.com>' . "\r\n";
$headers .= 'From: from_name <from_name@example.com>' . "\r\n";
$headers .= 'Cc: cc_email@example.com' . "\r\n";
$headers .= 'Bcc: bcc@example.com' . "\r\n";

// Mail it
mail($to, $subject, $message, $headers);