[PHP] EOD 及 mail 发布_PHP

WBOY
Release: 2016-06-01 12:34:56
Original
1084 people have browsed it

$message=

......成堆的字符串 如批量HTML代码 可以念

EOD;

装载到  $message 中。

$to="digico@123.com";

$mail ="hts@123.com";

$zhuti ="我爱你";   // 信件主题

// $mailheaders .="Content-Type=text/html;\r\n\tcharset=gb2312\r\n";
// $mailheaders .="Content-disposition: inline\r\n";
// $mailheaders .="Reply-To:\r\n";
// $mailheaders .="Content-Transfer-Encoding: 7bit\r\n";
$mailheaders = "From: $mail\n";//发信人的地址
// $mailheaders .= "To: $to\n";
 $mailheaders .= "MIME-Version: 1.0\n";
 $mailheaders .= "Content-type: text/html;\tcharset=gb2312";

mail($to,$zhuti,$message,$mailheaders);

OK !

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template