$message= <<<EOD
......成堆的字符串 如批量HTML代碼 可以念
EOD;
裝載到 $message 中。
$to="[email protected]";
$mail ="[email protected]";
$zhuti ="我愛你"; // 信件主題
// $mailheaders .="Content-Type=text/html; charset=gb2312";
// $mailheaders .="Content-disposition: inline";
// $mailheaders .="Reply-To:";
// $mailheaders .="Content-Transfer-Encoding: 7bit";
$mailheaders = "From: $mail";//發信人的地址
// $mailheaders .= "To: $to";
$mailheaders .= "MIME-Version: 1.0";
$mailheaders .= "Content-type: text/html; charset=gb2312";
mail($to,$zhuti,$message,$mailheaders);
OK !