PHP下MAIL的另一解決方案

來源:互聯網
上載者:User
關鍵字 PHP下MAIL的另一解決方案
前一段時間我接觸到DEC Tru64 Unix 我在上面裝了php+APACHE,可以用提供的mail函數始終不能正常發信,於是自編了一個函數,它利用UNIX下的管道和PHP的SOCK函數進行發信,經過實驗非常駐成功,下面是此函數原代碼。
function mymail($mto,$mcc,$msubject,$mbody)
{ 
$from="webmaster@backhome.com.cn";
$sign = "\n";//隨你便寫些什麼
$sendmailpath="/usr/lib/sendmail";//Semdmail路徑
$bound = "========_".uniqid("BCFMail")."==_";//分界符
 $headers = "MIME-Version: 1.0\n".
      "Content-Type: multipart/mixed; boundary=\"$bound\"\n".
      "Date: ".date("D, d M H:i:s Y ")."\n".
      "From: $from\n".
      "To: $mto\n".
      "Cc: $mcc\n".
      "Subject: $msubject\n".
      "Status: \n".
      "X-Status:\n".
      "X-Mailer: MY Email Interface\n".
      "X-KeyWords:\n\n";
 $content="--".$bound."\n"."Content-Type:text/plain;charset=\"GB2312\"\n\n".$mbody.$sign."\n";
 $end = "\n"."--".$bound."--\n";
 $sock = popen("$sendmailpath -t -f 'webmaster@backhome.com.cn'",'w');
 fputs($sock, $headers);
 fputs($sock, $content);
 fputs($sock, $end);
 fputs($sock, ".\n");
 fputs($sock, "QUIT\n");
 pclose($sock);
}
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.