PHP下MAIL的另一解决方案
时间:2007-02-17 来源:PHP爱好者
前一段时间我接触到DEC Tru64 Unix 我在上面装了PHP+APACHE,可以用提供的mail函数始终不能正常发信,于是自编了一个函数,它利用UNIX下的管道和PHP的SOCK函数进行发信,经过实验非常驻成功,下面是此函数原代码。
function mymail($mto,$mcc,$msubject,$mbody)
{
$from="[email protected]";
$sign = "n";//随你便写些什么
$sendmailpath="/usr/lib/sendmail";//Semdmail路径
$bound = "========_".uniqid("BCFMail")."==_";//分界符
$headers = "MIME-Version: 1.0n".
"Content-Type: multipart/mixed; boundary="$bound"n".
"Date: ".date("D, d M H:i:s Y ")."n".
"From: $fromn".
"To: $mton".
"Cc: $mccn".
"Subject: $msubjectn".
"Status: n".
"X-Status:n".
"X-Mailer: MY Email Interfacen".
"X-Keywords:nn";
$content="--".$bound."n"."Content-Type:text/plain;charset="GB2312"nn".$mbody.$sign."n";
$end = "n"."--".$bound."--n";
$sock = popen("$sendmailpath -t -f '[email protected]'",'w');
fputs($sock, $headers);
fputs($sock, $content);
fputs($sock, $end);
fputs($sock, ".n");
fputs($sock, "QUITn");
pclose($sock);
}
非常全面的一个php技术网站,php爱好者站 http://www.phpfans.net 有相当丰富的文章和源代码.
function mymail($mto,$mcc,$msubject,$mbody)
{
$from="[email protected]";
$sign = "n";//随你便写些什么
$sendmailpath="/usr/lib/sendmail";//Semdmail路径
$bound = "========_".uniqid("BCFMail")."==_";//分界符
$headers = "MIME-Version: 1.0n".
"Content-Type: multipart/mixed; boundary="$bound"n".
"Date: ".date("D, d M H:i:s Y ")."n".
"From: $fromn".
"To: $mton".
"Cc: $mccn".
"Subject: $msubjectn".
"Status: n".
"X-Status:n".
"X-Mailer: MY Email Interfacen".
"X-Keywords:nn";
$content="--".$bound."n"."Content-Type:text/plain;charset="GB2312"nn".$mbody.$sign."n";
$end = "n"."--".$bound."--n";
$sock = popen("$sendmailpath -t -f '[email protected]'",'w');
fputs($sock, $headers);
fputs($sock, $content);
fputs($sock, $end);
fputs($sock, ".n");
fputs($sock, "QUITn");
pclose($sock);
}
非常全面的一个php技术网站,php爱好者站 http://www.phpfans.net 有相当丰富的文章和源代码.
相关阅读 更多 +