ホームページ  >  記事  >  php教程  >  [PHP] EOD 及 mail 发布

[PHP] EOD 及 mail 发布

WBOY
WBOYオリジナル
2016-06-13 11:21:101339ブラウズ

$message= ......成堆的字符串 如批量HTML代码 可以念
EOD;
装载到  $message 中。
$to="digico@123.com";
$mail ="hts@123.com";
$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 !



声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。