1

你好,这是我发送电子邮件的 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 的

4

1 回答 1

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);
于 2015-10-14T12:01:04.100 回答