-
-
/**
- * php socket smtp寄信
- * edit: bbs.it-home.org
- */
//define(" SOL", "n");
- define("EOL", "rn");
- define("SMTP_HOST", "smtp.163.com");//SMTP伺服器
- define(" SMTP_PORT", "25");//SMTP伺服器連接埠
- define("SMTP_USER", "");//SMTP伺服器的使用者帳號
- define("SMTP_PASS", "");//SMTP伺服器的使用者密碼
$from = "";//SMTP伺服器的使用者信箱
- $to = "";//傳送給誰可用逗號隔開多個信箱
- $cc = "";
- $bcc = "";
$subject="這是一個由PHP發送的帶附件的郵件";//郵件主題很多客戶端會有亂碼,所以轉一下碼
- $body = "這個是一個帶附件的郵件發送程式
看到沒,這裡顯示了HTM標籤哦;請點開連結 ".date('Y-m-d H:i:s');//郵件內容
- $smtp = new smtp(SMTP_HOST,SMTP_PORT,SMTP_USER,SMTP_PASS, true);//這裡面的一個true是表示使用身份驗證,否則不使用身份驗證.
- $smtp->addAttachment("mail .zip");
- $smtp->sendmail($to, $from, $subject, $body, $cc, $bcc);
-
class smtp {
/* Public Variables */
- public $attachments = array();
- /* Private Variables */
- private $smtp_host;
- private $smprivate privated $time_out;
- private $host_name;
- private $auth;
- private $user;
- private $pass;
- private $sock;
/* Constractor */
- public function smtp($smtp_host = null, $smtp_port = null, $user = null, $pass = null, $auth = true) {
- $this->smtp_host = (!empty($host = (!empty($host =d smtp_host)) ? $smtp_host : SMTP_HOST;
- $this->smtp_port = (!empty($smtp_port)) ? $smtp_port : SMTP_PORT;
- $this->user = (!empty($user)) ? $user : SMTP_PORT;
- $this->pass = (!empty($pass)) ? $pass : SMTP_PORT;
- $this->auth = $auth;
- $this->time_out = 15 ;
- #
- $this->host_name = "localhost";
- $this->sock = FALSE;
- }
/* Main Function */
- public function sendmail($to, $from, $subject = "", $body = "", $cc = "", $bcc = "") {
- $bndp = md5(uniqid("") ) . rand(1000, 9999);
- $bnd = md5(uniqid("")) . rand(1000, 9999);
- list ($msec, $sec) = explode(" ", microtime( ));
$mail_from = $this->strip_line_breaks($from);
- $mail_to = explode(",", $to);
- $body = preg_replace( "/(^|(rn))(\.)/", "", $body);
- if ($cc != "") $mail_to = array_merge($mail_to, explode(",", $ cc));
- if ($bcc != "") $mail_to = array_merge($mail_to, explode(",", $bcc));
$headers = "MIME -Version:1.0" . EOL;
- $headers .= "To: " . $to . EOL;
- if ($cc != "") {
- $headers .= "Cc: " . $cc . EOL;
- }
- $headers .= "來自: $from” 。 EOL;
- $headers .= "主題:" . $主題。 EOL;
- $headers .= "日期: " .日期(“r”)。 EOL;
- $headers .= "X-Mailer: Webmail 版本 1.0 (PHP 版本/" . phpversion() . ")" . EOL;
- $headers .= "訊息 ID: ” 。 EOL;
- if (count($this->attachments) > 0) {
- $headers .= "內容類型:多部分/混合;" 。停產。 chr(9) 。 “邊界=”“。$bndp。”“”。停產。 EOL;
- $headers .= '--'.$bndp 。 EOL;
- $headers .= '內容類型:多部分/替代;邊界=“'。$bnd。'”'。停產。 EOL;
- $headers .= '--' 。 $bnd 。 EOL;
- $headers .= '內容類型:文字/純文字;字元集=utf-8' 。 EOL;
- $headers .= "內容傳輸編碼:8位元" .停產。 EOL;
- $headers .= $body . EOL;
- $headers .= '--' 。 $bnd 。 EOL;
- $headers .= '內容類型:text/html;字元集=utf-8' 。 EOL;
- $headers .= "內容傳輸編碼:8位元" .停產。 EOL;
- $headers .= $body . EOL;
- $headers .= '--' 。 $bnd 。 '--'。停產;
foreach ($this->attachments as $att) {
- $headers .= "--" . $bndp .停產。 $att;
- }
- $headers .= '--' 。 $bndp . '--'。 EOL;
- $this->clear_attachments();
- } else {
- $headers .= 'Content-Type : multipart/alternative;boundary="'.$bnd.'"' 。停產。 EOL;
- $headers .= '--'.$bnd 。 EOL;
- $headers .= '內容類型:文字/純文字;字元集=utf-8' 。 EOL;
- $headers .= "內容傳輸編碼:8位元" .停產。 EOL;
- $headers .= $body . EOL;
- $headers .= '--'.$bnd 。 EOL;
- $headers .= '內容類型:text/html;字元集=utf-8' 。 EOL;
- $headers .= "內容傳輸編碼:8位元" .停產。 EOL;
- $headers .= $body . EOL;
- $headers .= '--'.$bnd.'--' 。停產;
- }
$sent = TRUE;
- foreach ($mail_to as $rcpt_to) {
- $rcpt_to = $this->strip_line_breaks($rcpt_to);
- if (!$this->smtp_sockopen($rcpt_to) ) {
- $this->log_write("錯誤:無法傳送電子郵件至" . $rcpt_to);
- $sent = FALSE;
- 繼續;
- }
- if ($this- >smtp_send($this->host_name, $mail_from, $rcpt_to, $headers, $body)) {
- $this->log_write("電子郵件已寄至");
- } else {
- $this->log_write("錯誤:無法傳送電子郵件至");
- $sent = FALSE;
- }
- fclose($this->sock);
- }
- $this->log_write("{$mail_to} 寄過來;");
- return $ sent;
- }
公用函數addAttachment($file, $dispo = "附件") {
- $file_data = (file_exists($file)) ?file_get_contents($file) : "";
- if ($file_data != "") {
- $filename = basename($file);
- $ext = pathinfo($filename, PATHINFO_EXTENSION);
- $chunks = chunk_split (base64_encode($file_data));
- $parts = "Content-Type: application/$ext; name="" . $filename . """ . EOL;
- $parts .= "內容傳輸編碼: base64" . EOL;
- $parts .= "內容處置:" . $dispo . "; filename="" .$filename .""" .停產。 EOL;
- $parts .= $chunks .停產。 EOL;
- $this->attachments[] = $parts;
- }
- }
private functionclear_attachments() {
- unset($this->attachments) ;
- $this->attachments = array();
- }
/* 私有函數*/
- 私有函數smtp_send($helo, $from, $to, $header, $body = "") {
- if (!$this->smtp_putcmd("HELO", $ helo)) {
- //$this->log_write("錯誤:傳送HELO 指令時發生錯誤。 ($this->user))) {
- //$this->log_write("錯誤:傳送HELO 指令時發生錯誤。");
- return FALSE;
- }
- if (! $this->smtp_putcmd("", base64_encode($this->pass))) {
- //$this->log_write("錯誤:傳送HELO 指令時發生錯誤。");
- return FALSE;
- }
- }
- if (!$this-> smtp_putcmd("MAIL", "FROM:")) {
- //$this->log_write( "錯誤:傳送MAIL FROM 指令時發生錯誤。");
- 回傳FALSE;
- }
- if (!$this->smtp_putcmd("RCPT", "TO:")) {
- //$this->log_write("錯誤:錯誤傳送RCPT TO 指令時發生。指令時發生錯誤。錯誤:傳送訊息時發生錯誤。發送 時發生錯誤。 ) {
- //$this->log_write("錯誤:發送QUIT 指令時發生錯誤。");
- return FALSE;
- }
- return TRUE;
- }
- private function smtp_sockopen($address) {
- if ($this->smtp_host == "") {
- return $this->smtp_sockopen_mx ($address);
- } else { // bbs.open_mx ($address);
- } else { // bbs.itit-home .org
- return $this->smtp_sockopen_relay();
- }
- }
- private function smtp_sockopen_relay() {
- $this->log_write("tp_sockopen_relay() {
- $this->log_write(""tp" . 。 ->time_out);
- if (!($this->sock && $this->smtp_ok())) {
- $this->log_write("錯誤:連接錯誤" . $errstr . " (" . $errno . ")");
- return FALSE;
- }
- $this->log_write("已連接成功");
- return TRUE;
- }
- private function smtp_sockopen_mx($address ) {
- $domain = preg_replace("/^.@([^@] )$/", "1", $address);
- if (!@getmxrr($domain , $MXHOSTS)) {
- $this->log_write("錯誤:無法解析MX "" . $domain . """);
- return FALSE;
- }
- foreach ($MXHOSTS as $host) {
- $this->log_write("嘗試" . $host . ":" . $this->smtp_port);
- $this->sock = @fsockopen($host, $this-> ; smtp_port, $errno, $errstr, $this->time_out);
- if (!($this->sock && $this->smtp_ok())) {
- $this->log_write ( "連線錯誤," . $errstr . " (" . $errno . ")");
- continue;
- }
- $this->log_write("已連線至mx 主機" . $host) ;
- return TRUE;
- }
- $this->log_write("錯誤:無法連接到任何mx 主機(" . implode(", ", $MXHOSTS) . ")") ;
- return FALSE;
- }
- private function smtp_message($header, $body) {
- fputs($this->sock, $header . "rn" . $body);
- return TRUEUE;
- }
- private function smtp_eom() {
- fputs($this->sock, "rn.rn");
- return $this->smtp_ok();
- }
- private function smtp_ok() {
- $response = str_replace("rn", "", fgets($this->sock, 512));
- if (!preg_match("/ ^[23] /", $response)) {
- fputs($this->sock, "QUITrn");
- fgets($this->sock, 512);
- $this- >log_write("錯誤:遠端主機回傳"" . $response . """);
- return FALSE;
- }
- return TRUE;
- }
- private function smtp_putcmd($cmd , $
- private function smtp_putcmd($cmd , $arg = "") {
- if ($arg != "") $cmd = ($cmd == "") ? $arg : ($cmd . " " . $arg);
- fputs($this->sock, $cmd . "rn");
- return $this->smtp_ok();
- }
- private function strip_line_breaks($address) {
- $address = preg_replace("/([trn ]) /", "", $address);
- $address = preg_replace("/^.* .*$/", "", $address);
- return $address;
- }
- public function log_write($message) {
- $message = date( “M d H:i:s”)。 get_current_user() 。 “[”。 getmypid() 。 ”]:“。 $message;
- file_put_contents(dirname(__FILE__) . '/mail.log', $message . PHP_EOL, FILE_APPEND | LOCK_EX);
- }
- }
-
-
- 複製程式碼
-
-
-
-
-
-
-
-
-
-
|