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);