欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

PHP實現(xiàn)支持SSL連接的SMTP郵件發(fā)送類

 更新時間:2015年03月05日 09:50:26   作者:OSC首席鍵客  
這篇文章主要介紹了PHP實現(xiàn)支持SSL連接的SMTP郵件發(fā)送類,實例分析了php實現(xiàn)smtp郵件發(fā)送類的原理與技巧,以及支持SSL連接的方法,需要的朋友可以參考下

本文實例講述了PHP實現(xiàn)支持SSL連接的SMTP郵件發(fā)送類。分享給大家供大家參考。具體如下:

該實例代碼測試過了gmail和QQ郵箱的SMTP。具體代碼如下:

復(fù)制代碼 代碼如下:
<?php
/**
* 郵件發(fā)送類
* 支持發(fā)送純文本郵件和HTML格式的郵件,可以多收件人,多抄送,多秘密抄送,帶附件(單個或多個附件),支持到服務(wù)器的ssl連接
* 需要的php擴展:sockets、Fileinfo和openssl。
* 編碼格式是UTF-8,傳輸編碼格式是base64
* @example
* $mail = new MySendMail();
* $mail->setServer("smtp@126.com", "XXXXX@126.com", "XXXXX"); //設(shè)置smtp服務(wù)器,普通連接方式
* $mail->setServer("smtp.gmail.com", "XXXXX@gmail.com", "XXXXX", 465, true); //設(shè)置smtp服務(wù)器,到服務(wù)器的SSL連接
* $mail->setFrom("XXXXX"); //設(shè)置發(fā)件人
* $mail->setReceiver("XXXXX"); //設(shè)置收件人,多個收件人,調(diào)用多次
* $mail->setCc("XXXX"); //設(shè)置抄送,多個抄送,調(diào)用多次
* $mail->setBcc("XXXXX"); //設(shè)置秘密抄送,多個秘密抄送,調(diào)用多次
* $mail->addAttachment("XXXX"); //添加附件,多個附件,調(diào)用多次
* $mail->setMail("test", "<b>test</b>"); //設(shè)置郵件主題、內(nèi)容
* $mail->sendMail(); //發(fā)送
*/
class MySendMail {
    /**
    * @var string 郵件傳輸代理用戶名
    * @access protected
    */
    protected $_userName;
    /**
    * @var string 郵件傳輸代理密碼
    * @access protected
    */
    protected $_password;
    /**
    * @var string 郵件傳輸代理服務(wù)器地址
    * @access protected
    */
    protected $_sendServer;
    /**
    * @var int 郵件傳輸代理服務(wù)器端口
    * @access protected
    */
    protected $_port;
    /**
    * @var string 發(fā)件人
    * @access protected
    */
    protected $_from;
    /**
    * @var array 收件人
    * @access protected
    */
    protected $_to = array();
    /**
    * @var array 抄送
    * @access protected
    */
    protected $_cc = array();
    /**
    * @var array 秘密抄送
    * @access protected
    */
    protected $_bcc = array();
    /**
    * @var string 主題
    * @access protected
    */
    protected $_subject;
    /**
    * @var string 郵件正文
    * @access protected
    */
    protected $_body;
    /**
    * @var array 附件
    * @access protected
    */
    protected $_attachment = array();
    /**
    * @var reource socket資源
    * @access protected
    */
    protected $_socket;
    /**
    * @var reource 是否是安全連接
    * @access protected
    */
    protected $_isSecurity;
    /**
    * @var string 錯誤信息
    * @access protected
    */
    protected $_errorMessage;
    /**
    * 設(shè)置郵件傳輸代理,如果是可以匿名發(fā)送有郵件的服務(wù)器,只需傳遞代理服務(wù)器地址就行
    * @access public
    * @param string $server 代理服務(wù)器的ip或者域名
    * @param string $username 認(rèn)證賬號
    * @param string $password 認(rèn)證密碼
    * @param int $port 代理服務(wù)器的端口,smtp默認(rèn)25號端口
    * @param boolean $isSecurity 到服務(wù)器的連接是否為安全連接,默認(rèn)false
    * @return boolean
    */
    public function setServer($server, $username="", $password="", $port=25, $isSecurity=false) {
        $this->_sendServer = $server;
        $this->_port = $port;
        $this->_isSecurity = $isSecurity;
        $this->_userName = empty($username) ? "" : base64_encode($username);
        $this->_password = empty($password) ? "" : base64_encode($password);
        return true;
    }
    /**
    * 設(shè)置發(fā)件人
    * @access public
    * @param string $from 發(fā)件人地址
    * @return boolean
    */
    public function setFrom($from) {
        $this->_from = $from;
        return true;
    }
    /**
    * 設(shè)置收件人,多個收件人,調(diào)用多次.
    * @access public
    * @param string $to 收件人地址
    * @return boolean
    */
    public function setReceiver($to) {
        $this->_to[] = $to;
        return true;
    }
    /**
    * 設(shè)置抄送,多個抄送,調(diào)用多次.
    * @access public
    * @param string $cc 抄送地址
    * @return boolean
    */
    public function setCc($cc) {
        $this->_cc[] = $cc;
        return true;
    }
    /**
    * 設(shè)置秘密抄送,多個秘密抄送,調(diào)用多次
    * @access public
    * @param string $bcc 秘密抄送地址
    * @return boolean
    */
    public function setBcc($bcc) {
        $this->_bcc[] = $bcc;
        return true;
    }
    /**
    * 設(shè)置郵件附件,多個附件,調(diào)用多次
    * @access public
    * @param string $file 文件地址
    * @return boolean
    */
    public function addAttachment($file) {
        if(!file_exists($file)) {
            $this->_errorMessage = "file " . $file . " does not exist.";
            return false;
        }
        $this->_attachment[] = $file;
        return true;
    }
    /**
    * 設(shè)置郵件信息
    * @access public
    * @param string $body 郵件主題
    * @param string $subject 郵件主體內(nèi)容,可以是純文本,也可是是HTML文本
    * @return boolean
    */
    public function setMail($subject, $body) {
        $this->_subject = base64_encode($subject);
        $this->_body = base64_encode($body);
        return true;
    }
    /**
    * 發(fā)送郵件
    * @access public
    * @return boolean
    */
    public function sendMail() {
        $command = $this->getCommand();
        $this->_isSecurity ? $this->socketSecurity() : $this->socket();
        foreach ($command as $value) {
            $result = $this->_isSecurity ? $this->sendCommandSecurity($value[0], $value[1]) : $this->sendCommand($value[0], $value[1]);
            if($result) {
                continue;
            }
            else{
                return false;
            }
        }
        //其實這里也沒必要關(guān)閉,smtp命令:QUIT發(fā)出之后,服務(wù)器就關(guān)閉了連接,本地的socket資源會自動釋放
        $this->_isSecurity ? $this->closeSecutity() : $this->close();
        return true;
    }
    /**
    * 返回錯誤信息
    * @return string
    */
    public function error(){
        if(!isset($this->_errorMessage)) {
            $this->_errorMessage = "";
        }
        return $this->_errorMessage;
    }
    /**
    * 返回mail命令
    * @access protected
    * @return array
    */
    protected function getCommand() {
        $separator = "----=_Part_" . md5($this->_from . time()) . uniqid(); //分隔符
        $command = array(
                array("HELO sendmail\r\n", 250)
            );
        if(!empty($this->_userName)){
            $command[] = array("AUTH LOGIN\r\n", 334);
            $command[] = array($this->_userName . "\r\n", 334);
            $command[] = array($this->_password . "\r\n", 235);
        }
        //設(shè)置發(fā)件人
        $command[] = array("MAIL FROM: <" . $this->_from . ">\r\n", 250);
        $header = "FROM: <" . $this->_from . ">\r\n";
        //設(shè)置收件人
        if(!empty($this->_to)) {
            $count = count($this->_to);
            if($count == 1){
                $command[] = array("RCPT TO: <" . $this->_to[0] . ">\r\n", 250);
                $header .= "TO: <" . $this->_to[0] .">\r\n";
            }
            else{
                for($i=0; $i<$count; $i++){
                    $command[] = array("RCPT TO: <" . $this->_to[$i] . ">\r\n", 250);
                    if($i == 0){
                        $header .= "TO: <" . $this->_to[$i] .">";
                    }
                    elseif($i + 1 == $count){
                        $header .= ",<" . $this->_to[$i] .">\r\n";
                    }
                    else{
                        $header .= ",<" . $this->_to[$i] .">";
                    }
                }
            }
        }
        //設(shè)置抄送
        if(!empty($this->_cc)) {
            $count = count($this->_cc);
            if($count == 1){
                $command[] = array("RCPT TO: <" . $this->_cc[0] . ">\r\n", 250);
                $header .= "CC: <" . $this->_cc[0] .">\r\n";
            }
            else{
                for($i=0; $i<$count; $i++){
                    $command[] = array("RCPT TO: <" . $this->_cc[$i] . ">\r\n", 250);
                    if($i == 0){
                    $header .= "CC: <" . $this->_cc[$i] .">";
                    }
                    elseif($i + 1 == $count){
                        $header .= ",<" . $this->_cc[$i] .">\r\n";
                    }
                    else{
                        $header .= ",<" . $this->_cc[$i] .">";
                    }
                }
            }
        }
        //設(shè)置秘密抄送
        if(!empty($this->_bcc)) {
            $count = count($this->_bcc);
            if($count == 1) {
                $command[] = array("RCPT TO: <" . $this->_bcc[0] . ">\r\n", 250);
                $header .= "BCC: <" . $this->_bcc[0] .">\r\n";
            }
            else{
                for($i=0; $i<$count; $i++){
                    $command[] = array("RCPT TO: <" . $this->_bcc[$i] . ">\r\n", 250);
                    if($i == 0){
                    $header .= "BCC: <" . $this->_bcc[$i] .">";
                    }
                    elseif($i + 1 == $count){
                        $header .= ",<" . $this->_bcc[$i] .">\r\n";
                    }
                    else{
                        $header .= ",<" . $this->_bcc[$i] .">";
                    }
                }
            }
        }
        //主題
        $header .= "Subject: =?UTF-8?B?" . $this->_subject ."?=\r\n";
        if(isset($this->_attachment)) {
            //含有附件的郵件頭需要聲明成這個
            $header .= "Content-Type: multipart/mixed;\r\n";
        }
        elseif(false){
            //郵件體含有圖片資源的,且包含的圖片在郵件內(nèi)部時聲明成這個,如果是引用的遠(yuǎn)程圖片,就不需要了
            $header .= "Content-Type: multipart/related;\r\n";
        }
        else{
            //html或者純文本的郵件聲明成這個
            $header .= "Content-Type: multipart/alternative;\r\n";
        }
        //郵件頭分隔符
        $header .= "\t" . 'boundary="' . $separator . '"';
        $header .= "\r\nMIME-Version: 1.0\r\n";
        //這里開始是郵件的body部分,body部分分成幾段發(fā)送
        $header .= "\r\n--" . $separator . "\r\n";
        $header .= "Content-Type:text/html; charset=utf-8\r\n";
        $header .= "Content-Transfer-Encoding: base64\r\n\r\n";
        $header .= $this->_body . "\r\n";
        $header .= "--" . $separator . "\r\n";
        //加入附件
        if(!empty($this->_attachment)){
            $count = count($this->_attachment);
            for($i=0; $i<$count; $i++){
                $header .= "\r\n--" . $separator . "\r\n";
                $header .= "Content-Type: " . $this->getMIMEType($this->_attachment[$i]) . '; name="=?UTF-8?B?' . base64_encode( basename($this->_attachment[$i]) ) . '?="' . "\r\n";
                $header .= "Content-Transfer-Encoding: base64\r\n";
                $header .= 'Content-Disposition: attachment; filename="=?UTF-8?B?' . base64_encode( basename($this->_attachment[$i]) ) . '?="' . "\r\n";
                $header .= "\r\n";
                $header .= $this->readFile($this->_attachment[$i]);
                $header .= "\r\n--" . $separator . "\r\n";
            }
        }
        //結(jié)束郵件數(shù)據(jù)發(fā)送
        $header .= "\r\n.\r\n";
 
        $command[] = array("DATA\r\n", 354);
        $command[] = array($header, 250);
        $command[] = array("QUIT\r\n", 221);
        return $command;
    }
    /**
    * 發(fā)送命令
    * @access protected
    * @param string $command 發(fā)送到服務(wù)器的smtp命令
    * @param int $code 期望服務(wù)器返回的響應(yīng)嗎
    * @return boolean
    */
    protected function sendCommand($command, $code) {
        echo 'Send command:' . $command . ',expected code:' . $code . '<br />';
        //發(fā)送命令給服務(wù)器
        try{
            if(socket_write($this->_socket, $command, strlen($command))){
                //當(dāng)郵件內(nèi)容分多次發(fā)送時,沒有$code,服務(wù)器沒有返回
                if(empty($code))  {
                    return true;
                }
                //讀取服務(wù)器返回
                $data = trim(socket_read($this->_socket, 1024));
                echo 'response:' . $data . '<br /><br />';
                if($data) {
                    $pattern = "/^".$code."+?/";
                    if(preg_match($pattern, $data)) {
                        return true;
                    }
                    else{
                        $this->_errorMessage = "Error:" . $data . "|**| command:";
                        return false;
                    }
                }
                else{
                    $this->_errorMessage = "Error:" . socket_strerror(socket_last_error());
                    return false;
                }
            }
            else{
                $this->_errorMessage = "Error:" . socket_strerror(socket_last_error());
                return false;
            }
        }catch(Exception $e) {
            $this->_errorMessage = "Error:" . $e->getMessage();
        }
    }
    /**
    * 安全連接發(fā)送命令
    * @access protected
    * @param string $command 發(fā)送到服務(wù)器的smtp命令
    * @param int $code 期望服務(wù)器返回的響應(yīng)嗎
    * @return boolean
    */
    protected function sendCommandSecurity($command, $code) {
        echo 'Send command:' . $command . ',expected code:' . $code . '<br />';
        try {
            if(fwrite($this->_socket, $command)){
                //當(dāng)郵件內(nèi)容分多次發(fā)送時,沒有$code,服務(wù)器沒有返回
                if(empty($code))  {
                    return true;
                }
                //讀取服務(wù)器返回
                $data = trim(fread($this->_socket, 1024));
                echo 'response:' . $data . '<br /><br />';
                if($data) {
                    $pattern = "/^".$code."+?/";
                    if(preg_match($pattern, $data)) {
                        return true;
                    }
                    else{
                        $this->_errorMessage = "Error:" . $data . "|**| command:";
                        return false;
                    }
                }
                else{
                    return false;
                }
            }
            else{
                $this->_errorMessage = "Error: " . $command . " send failed";
                return false;
            }
        }catch(Exception $e) {
            $this->_errorMessage = "Error:" . $e->getMessage();
        }
    }
    /**
    * 讀取附件文件內(nèi)容,返回base64編碼后的文件內(nèi)容
    * @access protected
    * @param string $file 文件
    * @return mixed
    */
    protected function readFile($file) {
        if(file_exists($file)) {
            $file_obj = file_get_contents($file);
            return base64_encode($file_obj);
        }
        else {
            $this->_errorMessage = "file " . $file . " dose not exist";
            return false;
        }
    }
    /**
    * 獲取附件MIME類型
    * @access protected
    * @param string $file 文件
    * @return mixed
    */
    protected function getMIMEType($file) {
        if(file_exists($file)) {
            $mime = mime_content_type($file);
            /*if(! preg_match("/gif|jpg|png|jpeg/", $mime)){
                $mime = "application/octet-stream";
            }*/
            return $mime;
        }
        else {
            return false;
        }
    }
    /**
    * 建立到服務(wù)器的網(wǎng)絡(luò)連接
    * @access protected
    * @return boolean
    */
    protected function socket() {
        //創(chuàng)建socket資源
        $this->_socket = socket_create(AF_INET, SOCK_STREAM, getprotobyname('tcp'));
        if(!$this->_socket) {
            $this->_errorMessage = socket_strerror(socket_last_error());
            return false;
        }
        socket_set_block($this->_socket);//設(shè)置阻塞模式
        //連接服務(wù)器
        if(!socket_connect($this->_socket, $this->_sendServer, $this->_port)) {
            $this->_errorMessage = socket_strerror(socket_last_error());
            return false;
        }
        $str = socket_read($this->_socket, 1024);
        if(!preg_match("/220+?/", $str)){
            $this->_errorMessage = $str;
            return false;
        }
        return true;
    }
    /**
    * 建立到服務(wù)器的SSL網(wǎng)絡(luò)連接
    * @access protected
    * @return boolean
    */
    protected function socketSecurity() {
        $remoteAddr = "tcp://" . $this->_sendServer . ":" . $this->_port;
        $this->_socket = stream_socket_client($remoteAddr, $errno, $errstr, 30);
        if(!$this->_socket){
            $this->_errorMessage = $errstr;
            return false;
        }
        //設(shè)置加密連接,默認(rèn)是ssl,如果需要tls連接,可以查看php手冊stream_socket_enable_crypto函數(shù)的解釋
        stream_socket_enable_crypto($this->_socket, true, STREAM_CRYPTO_METHOD_SSLv23_CLIENT);
        stream_set_blocking($this->_socket, 1); //設(shè)置阻塞模式
        $str = fread($this->_socket, 1024);
        if(!preg_match("/220+?/", $str)){
            $this->_errorMessage = $str;
            return false;
        }
        return true;
    }
    /**
    * 關(guān)閉socket
    * @access protected
    * @return boolean
    */
    protected function close() {
        if(isset($this->_socket) && is_object($this->_socket)) {
            $this->_socket->close();
            return true;
        }
        $this->_errorMessage = "No resource can to be close";
        return false;
    }
    /**
    * 關(guān)閉安全socket
    * @access protected
    * @return boolean
    */
    protected function closeSecutity() {
        if(isset($this->_socket) && is_object($this->_socket)) {
            stream_socket_shutdown($this->_socket, STREAM_SHUT_WR);
            return true;
        }
        $this->_errorMessage = "No resource can to be close";
        return false;
    }
}

希望本文所述對大家的php程序設(shè)計有所幫助。

相關(guān)文章

  • php的4種常見運行方式

    php的4種常見運行方式

    這篇文章主要介紹了php的4種常見運行方式,本文講解了CGI、FastCGI、APACHE2HANDLER、CLI等4種運行方式,需要的朋友可以參考下
    2015-03-03
  • PHP用反撇號執(zhí)行外部命令

    PHP用反撇號執(zhí)行外部命令

    shell_exec() 命令行實際上僅是反撇號 ` 操作符的變體,如果您編寫過 shell 或 Perl 腳本,您就知道可以在反撇號操作符內(nèi)部捕捉其他命令的輸出。
    2015-04-04
  • php讀取文件內(nèi)容的方法匯總

    php讀取文件內(nèi)容的方法匯總

    這篇文章主要介紹了php讀取文件內(nèi)容的方法,實例匯總了常見的五種方法,具有一定參考借鑒價值,需要的朋友可以參考下
    2015-01-01
  • php實現(xiàn)的pdo公共類定義與用法示例

    php實現(xiàn)的pdo公共類定義與用法示例

    這篇文章主要介紹了php實現(xiàn)的pdo公共類定義與用法,結(jié)合具體實例形式分析了php實現(xiàn)的pdo操作類定義及查詢、插入等使用技巧,需要的朋友可以參考下
    2017-07-07
  • PHP過濾★等特殊符號的正則

    PHP過濾★等特殊符號的正則

    過濾特殊符號的方法有很多,下面為大家介紹下使用正則來實現(xiàn)下,希望對大家有所幫助
    2014-01-01
  • Youku 視頻絕對地址獲取的方法詳解

    Youku 視頻絕對地址獲取的方法詳解

    本篇文章是對Youku 視頻絕對地址獲取的方法進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下
    2013-06-06
  • 利用php輸出不同的心形圖案

    利用php輸出不同的心形圖案

    這篇文章主要介紹了利用php輸出不同的心形圖案,用php輸出心形曲線、再利用php輸出笛卡爾心形圖案,感興趣的小伙伴們可以參考一下
    2016-04-04
  • php download.php實現(xiàn)代碼 跳轉(zhuǎn)到下載文件(response.redirect)

    php download.php實現(xiàn)代碼 跳轉(zhuǎn)到下載文件(response.redirect)

    一直對php不太熟悉,今天需要類型asp的 response.redirect語句,但一直沒有很好的解決方法。下面是問了朋友才知道的。
    2009-08-08
  • php 隨機排序廣告的實現(xiàn)代碼

    php 隨機排序廣告的實現(xiàn)代碼

    博客流行在側(cè)邊欄放置 4 到 6 個 125x125 的廣告, 但一般的擺放順序存在問題. 如果廣告位置被固定, 各個位置的天然關(guān)注度肯定是不一樣的
    2011-05-05
  • PHP設(shè)計模式之中介者模式淺析

    PHP設(shè)計模式之中介者模式淺析

    這篇文章主要介紹了PHP設(shè)計模式之中介者模式,中介者模式(Mediator Pattern)是一種常用的設(shè)計模式,用于解決各個對象之間的復(fù)雜依賴關(guān)系,使得各個對象之間可以獨立地改變自己的行為,而不需要與其他對象發(fā)生直接的交互
    2023-04-04

最新評論