привет, вот мой php-код для отправки электронного письма, когда письмо отправлено, адрес в разделе скрытой копии не получает письмо:
<?php
$to = "[email protected]";
$subject = 'Form Submited To ABC Website';
$headers = "From: [email protected] \r\n";
$headers .= "Bcc: [email protected] \r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=utf-8\r\n";
?>
письма не являются почтой по конфиденциальным причинам
Синтаксис PHP mail ():
bool mail ( string $to , string $subject , string $message [, string $additional_headers [, string $additional_parameters ]] )
Найдите ниже код для большего понимания.
<?php
// multiple recipients
$to = '[email protected]' . ', '; // note the comma, if you have multiple or else no comma.
$to .= '[email protected]';
// 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 <[email protected]>, Kelly <[email protected]>' . "\r\n";
$headers .= 'From: from_name <[email protected]>' . "\r\n";
$headers .= 'Cc: [email protected]' . "\r\n";
$headers .= 'Bcc: [email protected]' . "\r\n";
// Mail it
mail($to, $subject, $message, $headers);
Других решений пока нет …