最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

PHP使用SMTP郵件服務(wù)器發(fā)送郵件示例

 更新時(shí)間:2018年08月28日 14:19:29   作者:風(fēng)輕云淡180518  
這篇文章主要介紹了PHP使用SMTP郵件服務(wù)器發(fā)送郵件,結(jié)合實(shí)例形式分析了php基于SMTP協(xié)議的郵件發(fā)送類email.class.php定義與使用技巧,需要的朋友可以參考下

本文實(shí)例講述了PHP使用SMTP郵件服務(wù)器發(fā)送郵件。分享給大家供大家參考,具體如下:

用之前記得先去163注冊(cè)一個(gè)郵箱,然后打開SMTP服務(wù),當(dāng)然也可以使用QQ郵箱等,但配置信息得改。

如圖所示,開啟QQ郵箱SMTP服務(wù):

話不多說,直接上代碼

email.class.php  定義發(fā)送郵件的庫

<?php
class smtp
{
  /* Public Variables */
  var $smtp_port; //smtp_port 端口號(hào)
  var $time_out;
  var $host_name; //服務(wù)器主機(jī)名
  var $log_file;
  var $relay_host; //服務(wù)器主機(jī)地址
  var $debug;
  var $auth; //驗(yàn)證
  var $user; //服務(wù)器用戶名
  var $pass; //服務(wù)器密碼
  /* Private Variables */
  var $sock;
  /* Constractor 構(gòu)造方法*/
  function smtp($relay_host = "", $smtp_port = 25, $auth = false, $user, $pass)
  {
    $this->debug   = FALSE;
    $this->smtp_port = $smtp_port;
    $this->relay_host = $relay_host;
    $this->time_out  = 30; //is used in fsockopen()
    #
    $this->auth    = $auth; //auth
    $this->user    = $user;
    $this->pass    = $pass;
    #
    $this->host_name = "localhost"; //is used in HELO command
    // $this->host_name = "smtp.163.com"; //is used in HELO command
    $this->log_file  = "";
    $this->sock = FALSE;
  }
  /* Main Function */
  function sendmail($to, $from, $subject = "", $body = "", $mailtype, $cc = "", $bcc = "", $additional_headers = "")
  {
    $header  = "";
    $mail_from = $this->get_address($this->strip_comment($from));
    $body   = mb_ereg_replace("(^|(\r\n))(\\.)", "\\1.\\3", $body);
    $header .= "MIME-Version:1.0\r\n";
    if ($mailtype == "HTML") { //郵件發(fā)送類型
      //$header .= "Content-Type:text/html\r\n";
      $header .= 'Content-type: text/html; charset=utf-8' . "\r\n";
    }
    $header .= "To: " . $to . "\r\n";
    if ($cc != "") {
      $header .= "Cc: " . $cc . "\r\n";
    }
    $header .= "From: " . $from . "\r\n";
    // $header .= "From: $from<".$from.">\r\n";  //這里只顯示郵箱地址,不夠人性化
    $header .= "Subject: " . $subject . "\r\n";
    $header .= $additional_headers;
    $header .= "Date: " . date("r") . "\r\n";
    $header .= "X-Mailer:By (PHP/" . phpversion() . ")\r\n";
    list($msec, $sec) = explode(" ", microtime());
    $header .= "Message-ID: <" . date("YmdHis", $sec) . "." . ($msec * 1000000) . "." . $mail_from . ">\r\n";
    $TO = explode(",", $this->strip_comment($to));
    if ($cc != "") {
      $TO = array_merge($TO, explode(",", $this->strip_comment($cc))); //合并一個(gè)或多個(gè)數(shù)組
    }
    if ($bcc != "") {
      $TO = array_merge($TO, explode(",", $this->strip_comment($bcc)));
    }
    $sent = TRUE;
    foreach ($TO as $rcpt_to) {
      $rcpt_to = $this->get_address($rcpt_to);
      if (!$this->smtp_sockopen($rcpt_to)) {
        $this->log_write("Error: Cannot send email to " . $rcpt_to . "\n");
        $sent = FALSE;
        continue;
      }
      if ($this->smtp_send($this->host_name, $mail_from, $rcpt_to, $header, $body)) {
        $this->log_write("E-mail has been sent to <" . $rcpt_to . ">\n");
      } else {
        $this->log_write("Error: Cannot send email to <" . $rcpt_to . ">\n");
        $sent = FALSE;
      }
      fclose($this->sock);
      $this->log_write("Disconnected from remote host\n");
    }
    echo "<br>";
    //echo $header;
    return $sent;
  }
  /* Private Functions */
  function smtp_send($helo, $from, $to, $header, $body = "")
  {
    if (!$this->smtp_putcmd("HELO", $helo)) {
      return $this->smtp_error("sending HELO command");
    }
    #auth
    if ($this->auth) {
      if (!$this->smtp_putcmd("AUTH LOGIN", base64_encode($this->user))) {
        return $this->smtp_error("sending HELO command");
      }
      if (!$this->smtp_putcmd("", base64_encode($this->pass))) {
        return $this->smtp_error("sending HELO command");
      }
    }
    #
    if (!$this->smtp_putcmd("MAIL", "FROM:<" . $from . ">")) {
      return $this->smtp_error("sending MAIL FROM command");
    }
    if (!$this->smtp_putcmd("RCPT", "TO:<" . $to . ">")) {
      return $this->smtp_error("sending RCPT TO command");
    }
    if (!$this->smtp_putcmd("DATA")) {
      return $this->smtp_error("sending DATA command");
    }
    if (!$this->smtp_message($header, $body)) {
      return $this->smtp_error("sending message");
    }
    if (!$this->smtp_eom()) {
      return $this->smtp_error("sending <CR><LF>.<CR><LF> [EOM]");
    }
    if (!$this->smtp_putcmd("QUIT")) {
      return $this->smtp_error("sending QUIT command");
    }
    return TRUE;
  }
  function smtp_sockopen($address)
  {
    if ($this->relay_host == "") {
      return $this->smtp_sockopen_mx($address);
    } else {
      return $this->smtp_sockopen_relay();
    }
  }
  function smtp_sockopen_relay()
  {
    $this->log_write("Trying to " . $this->relay_host . ":" . $this->smtp_port . "\n");
    $this->sock = @fsockopen($this->relay_host, $this->smtp_port, $errno, $errstr, $this->time_out);
    if (!($this->sock && $this->smtp_ok())) {
      $this->log_write("Error: Cannot connenct to relay host " . $this->relay_host . "\n");
      $this->log_write("Error: " . $errstr . " (" . $errno . ")\n");
      return FALSE;
    }
    $this->log_write("Connected to relay host " . $this->relay_host . "\n");
    return TRUE;
    ;
  }
  function smtp_sockopen_mx($address)
  {
    $domain = ereg_replace("^.+@([^@]+)$", "\\1", $address);
    if (!@getmxrr($domain, $MXHOSTS)) {
      $this->log_write("Error: Cannot resolve MX \"" . $domain . "\"\n");
      return FALSE;
    }
    foreach ($MXHOSTS as $host) {
      $this->log_write("Trying to " . $host . ":" . $this->smtp_port . "\n");
      $this->sock = @fsockopen($host, $this->smtp_port, $errno, $errstr, $this->time_out);
      if (!($this->sock && $this->smtp_ok())) {
        $this->log_write("Warning: Cannot connect to mx host " . $host . "\n");
        $this->log_write("Error: " . $errstr . " (" . $errno . ")\n");
        continue;
      }
      $this->log_write("Connected to mx host " . $host . "\n");
      return TRUE;
    }
    $this->log_write("Error: Cannot connect to any mx hosts (" . implode(", ", $MXHOSTS) . ")\n");
    return FALSE;
  }
  function smtp_message($header, $body)
  {
    fputs($this->sock, $header . "\r\n" . $body);
    $this->smtp_debug("> " . str_replace("\r\n", "\n" . "> ", $header . "\n> " . $body . "\n> "));
    return TRUE;
  }
  function smtp_eom()
  {
    fputs($this->sock, "\r\n.\r\n");
    $this->smtp_debug(". [EOM]\n");
    return $this->smtp_ok();
  }
  function smtp_ok()
  {
    $response = str_replace("\r\n", "", fgets($this->sock, 512));
    $this->smtp_debug($response . "\n");
    if (!mb_ereg("^[23]", $response)) {
      fputs($this->sock, "QUIT\r\n");
      fgets($this->sock, 512);
      $this->log_write("Error: Remote host returned \"" . $response . "\"\n");
      return FALSE;
    }
    return TRUE;
  }
  function smtp_putcmd($cmd, $arg = "")
  {
    if ($arg != "") {
      if ($cmd == "")
        $cmd = $arg;
      else
        $cmd = $cmd . " " . $arg;
    }
    fputs($this->sock, $cmd . "\r\n");
    $this->smtp_debug("> " . $cmd . "\n");
    return $this->smtp_ok();
  }
  function smtp_error($string)
  {
    $this->log_write("Error: Error occurred while " . $string . ".\n");
    return FALSE;
  }
  function log_write($message)
  {
    $this->smtp_debug($message);
    if ($this->log_file == "") {
      return TRUE;
    }
    $message = date("M d H:i:s ") . get_current_user() . "[" . getmypid() . "]: " . $message;
    if (!@file_exists($this->log_file) || !($fp = @fopen($this->log_file, "a"))) {
      $this->smtp_debug("Warning: Cannot open log file \"" . $this->log_file . "\"\n");
      return FALSE;
    }
    flock($fp, LOCK_EX);
    fputs($fp, $message);
    fclose($fp);
    return TRUE;
  }
  function strip_comment($address)
  {
    $comment = "\\([^()]*\\)";
    while (mb_ereg($comment, $address)) {
      $address = mb_ereg_replace($comment, "", $address);
    }
    return $address;
  }
  function get_address($address)
  {
    $address = mb_ereg_replace("([ \t\r\n])+", "", $address);
    $address = mb_ereg_replace("^.*<(.+)>.*$", "\\1", $address);
    return $address;
  }
  function smtp_debug($message)
  {
    if ($this->debug) {
      echo $message . "<br>";
    }
  }
  function get_attach_type($image_tag) //
  {
    $filedata = array();
    $img_file_con = fopen($image_tag, "r");
    unset($image_data);
    while ($tem_buffer = AddSlashes(fread($img_file_con, filesize($image_tag))))
      $image_data .= $tem_buffer;
    fclose($img_file_con);
    $filedata['context'] = $image_data;
    $filedata['filename'] = basename($image_tag);
    $extension      = substr($image_tag, strrpos($image_tag, "."), strlen($image_tag) - strrpos($image_tag, "."));
    switch ($extension) {
      case ".gif":
        $filedata['type'] = "image/gif";
        break;
      case ".gz":
        $filedata['type'] = "application/x-gzip";
        break;
      case ".htm":
        $filedata['type'] = "text/html";
        break;
      case ".html":
        $filedata['type'] = "text/html";
        break;
      case ".jpg":
        $filedata['type'] = "image/jpeg";
        break;
      case ".tar":
        $filedata['type'] = "application/x-tar";
        break;
      case ".txt":
        $filedata['type'] = "text/plain";
        break;
      case ".zip":
        $filedata['type'] = "application/zip";
        break;
      default:
        $filedata['type'] = "application/octet-stream";
        break;
    }
    return $filedata;
  }
}
?>

index.php 發(fā)送郵件的具體實(shí)現(xiàn)

<?php
require 'email.class.php';
$mailto='*********@qq.com'; //收件人
$subject="恭喜您開通年費(fèi)會(huì)員成功"; //郵件主題
$body="回復(fù)TD退訂"; //郵件內(nèi)容
sendmailto($mailto,$subject,$body);
echo "finish".date('時(shí)間:Y年m月d日  H:i');
function sendmailto($mailto, $mailsub, $mailbd)
{
  //require_once ('email.class.php');
  //##########################################
  $smtpserver   = "smtp.163.com"; //SMTP服務(wù)器
  $smtpserverport = 25; //SMTP服務(wù)器端口
  $smtpusermail  = "***********@163.com"; //SMTP服務(wù)器的用戶郵箱
  $smtpemailto  = $mailto;
  $smtpuser    = "*******@163.com"; //SMTP服務(wù)器的用戶帳號(hào)
  $smtppass    = "**********"; //SMTP服務(wù)器的用戶密碼
  $mailsubject  = $mailsub; //郵件主題
  $mailsubject  = "=?UTF-8?B?" . base64_encode($mailsubject) . "?="; //防止亂碼
  $mailbody    = $mailbd; //郵件內(nèi)容
  //$mailbody = "=?UTF-8?B?".base64_encode($mailbody)."?="; //防止亂碼
  $mailtype    = "HTML"; //郵件格式(HTML/TXT),TXT為文本郵件. 139郵箱的短信提醒要設(shè)置為HTML才正常
  ##########################################
  $smtp      = new smtp($smtpserver, $smtpserverport, true, $smtpuser, $smtppass); //這里面的一個(gè)true是表示使用身份驗(yàn)證,否則不使用身份驗(yàn)證.
  $smtp->debug  = TRUE; //是否顯示發(fā)送的調(diào)試信息
  $smtp->sendmail($smtpemailto, $smtpusermail, $mailsubject, $mailbody, $mailtype);
}
?>

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《PHP網(wǎng)絡(luò)編程技巧總結(jié)》、《PHP基本語法入門教程》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《PHP運(yùn)算與運(yùn)算符用法總結(jié)》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總

希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。

相關(guān)文章

  • 回答PHPCHINA上的幾個(gè)問題:URL映射

    回答PHPCHINA上的幾個(gè)問題:URL映射

    回答PHPCHINA上的幾個(gè)問題:URL映射...
    2007-02-02
  • AJAX的使用方法詳解

    AJAX的使用方法詳解

    本篇文章主要介紹了AJAX的使用的相關(guān)知識(shí)。具有很好的參考價(jià)值。下面跟著小編一起來看下吧
    2017-04-04
  • php和nginx交互實(shí)例講解

    php和nginx交互實(shí)例講解

    在本篇文章中小編給大家分享的是關(guān)于php和nginx如何交互的實(shí)例以及相關(guān)知識(shí)點(diǎn),有需要的朋友們學(xué)習(xí)下。
    2019-09-09
  • php使用PDO操作MySQL數(shù)據(jù)庫實(shí)例

    php使用PDO操作MySQL數(shù)據(jù)庫實(shí)例

    這篇文章主要介紹了php使用PDO操作MySQL數(shù)據(jù)庫,實(shí)例分析了PDO的開啟與針對(duì)MySQL數(shù)據(jù)庫的增刪改查等基本操作方法,具有一定參考借鑒價(jià)值,需要的朋友可以參考下
    2014-12-12
  • php中mkdir函數(shù)用法實(shí)例分析

    php中mkdir函數(shù)用法實(shí)例分析

    這篇文章主要介紹了php中mkdir函數(shù)用法,以實(shí)例形式分析了mkdir函數(shù)針對(duì)目錄操作的方法,具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2014-11-11
  • PHP實(shí)現(xiàn)的分解質(zhì)因數(shù)操作示例

    PHP實(shí)現(xiàn)的分解質(zhì)因數(shù)操作示例

    這篇文章主要介紹了PHP實(shí)現(xiàn)的分解質(zhì)因數(shù)操作,結(jié)合實(shí)例形式分析了php實(shí)現(xiàn)分解質(zhì)因數(shù)的相關(guān)原理、步驟與操作技巧,需要的朋友可以參考下
    2018-08-08
  • 探討GDFONTPATH能否被winxp下的php支持

    探討GDFONTPATH能否被winxp下的php支持

    本篇文章是對(duì)關(guān)于GDFONTPATH能否被winxp下的php支持進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下
    2013-06-06
  • php使用strtotime技巧示例解惑

    php使用strtotime技巧示例解惑

    這篇文章主要為大家介紹了php使用strtotime技巧示例解惑,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-09-09
  • PHP遞歸調(diào)用的小技巧講解

    PHP遞歸調(diào)用的小技巧講解

    對(duì)于初學(xué)PHP語言的朋友來說,可能對(duì)PHP遞歸的用法還是比較陌生。我們今天就來講一下有關(guān)PHP遞歸調(diào)用實(shí)現(xiàn)多元數(shù)組替換功能
    2013-02-02
  • php消息隊(duì)列實(shí)現(xiàn)詳解

    php消息隊(duì)列實(shí)現(xiàn)詳解

    消息隊(duì)列技術(shù)是分布式應(yīng)用間交換信息的一種技術(shù)。消息隊(duì)列可駐留在內(nèi)存或磁盤上,隊(duì)列存儲(chǔ)消息直到它們被應(yīng)用程序讀出。通過消息隊(duì)列,應(yīng)用程序可獨(dú)立地執(zhí)行,它們不需要知道彼此的位置、或在繼續(xù)執(zhí)行前不需要等待接收程序接收此消息
    2022-08-08

最新評(píng)論

桦南县| 五台县| 河间市| 神池县| 增城市| 正定县| 金沙县| 张北县| 峨眉山市| 牟定县| 微博| 永泰县| 梓潼县| 盐源县| 阜康市| 台江县| 浦城县| 新建县| 霞浦县| 岢岚县| 新源县| 策勒县| 易门县| 梁山县| 鲜城| 泾川县| 仁布县| 南岸区| 九江县| 大同县| 左贡县| 襄城县| 海兴县| 禹城市| 萨嘎县| 芜湖县| 冀州市| 沂源县| 海原县| 洞头县| 会东县|