亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? class.phpmailer.php

?? 類似youtube的視頻分享網(wǎng)站源碼。有后臺(tái)管理系統(tǒng)及模板
?? PHP
?? 第 1 頁(yè) / 共 4 頁(yè)
字號(hào):
<?php
////////////////////////////////////////////////////
// PHPMailer - PHP email class
//
// Class for sending email using either
// sendmail, PHP mail(), or SMTP.  Methods are
// based upon the standard AspEmail(tm) classes.
//
// Copyright (C) 2001 - 2003  Brent R. Matzelle
//
// License: LGPL, see LICENSE
////////////////////////////////////////////////////

/**
 * PHPMailer - PHP email transport class
 * @package PHPMailer
 * @author Brent R. Matzelle
 * @copyright 2001 - 2003 Brent R. Matzelle
 */
class PHPMailer
{
    /////////////////////////////////////////////////
    // PUBLIC VARIABLES
    /////////////////////////////////////////////////

    /**
     * Email priority (1 = High, 3 = Normal, 5 = low).
     * @var int
     */
    var $Priority          = 3;

    /**
     * Sets the CharSet of the message.
     * @var string
     */
    var $CharSet           = "iso-8859-1";

    /**
     * Sets the Content-type of the message.
     * @var string
     */
    var $ContentType        = "text/plain";

    /**
     * Sets the Encoding of the message. Options for this are "8bit",
     * "7bit", "binary", "base64", and "quoted-printable".
     * @var string
     */
    var $Encoding          = "8bit";

    /**
     * Holds the most recent mailer error message.
     * @var string
     */
    var $ErrorInfo         = "";

    /**
     * Sets the From email address for the message.
     * @var string
     */
    var $From               = "root@localhost";

    /**
     * Sets the From name of the message.
     * @var string
     */
    var $FromName           = "Root User";

    /**
     * Sets the Sender email (Return-Path) of the message.  If not empty,
     * will be sent via -f to sendmail or as 'MAIL FROM' in smtp mode.
     * @var string
     */
    var $Sender            = "";

    /**
     * Sets the Subject of the message.
     * @var string
     */
    var $Subject           = "";

    /**
     * Sets the Body of the message.  This can be either an HTML or text body.
     * If HTML then run IsHTML(true).
     * @var string
     */
    var $Body               = "";

    /**
     * Sets the text-only body of the message.  This automatically sets the
     * email to multipart/alternative.  This body can be read by mail
     * clients that do not have HTML email capability such as mutt. Clients
     * that can read HTML will view the normal Body.
     * @var string
     */
    var $AltBody           = "";

    /**
     * Sets word wrapping on the body of the message to a given number of 
     * characters.
     * @var int
     */
    var $WordWrap          = 0;

    /**
     * Method to send mail: ("mail", "sendmail", or "smtp").
     * @var string
     */
    var $Mailer            = "mail";

    /**
     * Sets the path of the sendmail program.
     * @var string
     */
    var $Sendmail          = "/usr/sbin/sendmail";
    
    /**
     * Path to PHPMailer plugins.  This is now only useful if the SMTP class 
     * is in a different directory than the PHP include path.  
     * @var string
     */
    var $PluginDir         = "";

    /**
     *  Holds PHPMailer version.
     *  @var string
     */
    var $Version           = "1.72";

    /**
     * Sets the email address that a reading confirmation will be sent.
     * @var string
     */
    var $ConfirmReadingTo  = "";

    /**
     *  Sets the hostname to use in Message-Id and Received headers
     *  and as default HELO string. If empty, the value returned
     *  by SERVER_NAME is used or 'localhost.localdomain'.
     *  @var string
     */
    var $Hostname          = "";

    /////////////////////////////////////////////////
    // SMTP VARIABLES
    /////////////////////////////////////////////////

    /**
     *  Sets the SMTP hosts.  All hosts must be separated by a
     *  semicolon.  You can also specify a different port
     *  for each host by using this format: [hostname:port]
     *  (e.g. "smtp1.example.com:25;smtp2.example.com").
     *  Hosts will be tried in order.
     *  @var string
     */
    var $Host        = "localhost";

    /**
     *  Sets the default SMTP server port.
     *  @var int
     */
    var $Port        = 25;

    /**
     *  Sets the SMTP HELO of the message (Default is $Hostname).
     *  @var string
     */
    var $Helo        = "";

    /**
     *  Sets SMTP authentication. Utilizes the Username and Password variables.
     *  @var bool
     */
    var $SMTPAuth     = false;

    /**
     *  Sets SMTP username.
     *  @var string
     */
    var $Username     = "";

    /**
     *  Sets SMTP password.
     *  @var string
     */
    var $Password     = "";

    /**
     *  Sets the SMTP server timeout in seconds. This function will not 
     *  work with the win32 version.
     *  @var int
     */
    var $Timeout      = 10;

    /**
     *  Sets SMTP class debugging on or off.
     *  @var bool
     */
    var $SMTPDebug    = false;

    /**
     * Prevents the SMTP connection from being closed after each mail 
     * sending.  If this is set to true then to close the connection 
     * requires an explicit call to SmtpClose(). 
     * @var bool
     */
    var $SMTPKeepAlive = false;

    /**#@+
     * @access private
     */
    var $smtp            = NULL;
    var $to              = array();
    var $cc              = array();
    var $bcc             = array();
    var $ReplyTo         = array();
    var $attachment      = array();
    var $CustomHeader    = array();
    var $message_type    = "";
    var $boundary        = array();
    var $language        = array();
    var $error_count     = 0;
    var $LE              = "\n";
    /**#@-*/
    
    /////////////////////////////////////////////////
    // VARIABLE METHODS
    /////////////////////////////////////////////////

    /**
     * Sets message type to HTML.  
     * @param bool $bool
     * @return void
     */
    function IsHTML($bool) {
        if($bool == true)
            $this->ContentType = "text/html";
        else
            $this->ContentType = "text/plain";
    }

    /**
     * Sets Mailer to send message using SMTP.
     * @return void
     */
    function IsSMTP() {
        $this->Mailer = "smtp";
    }

    /**
     * Sets Mailer to send message using PHP mail() function.
     * @return void
     */
    function IsMail() {
        $this->Mailer = "mail";
    }

    /**
     * Sets Mailer to send message using the $Sendmail program.
     * @return void
     */
    function IsSendmail() {
        $this->Mailer = "sendmail";
    }

    /**
     * Sets Mailer to send message using the qmail MTA. 
     * @return void
     */
    function IsQmail() {
        $this->Sendmail = "/var/qmail/bin/sendmail";
        $this->Mailer = "sendmail";
    }


    /////////////////////////////////////////////////
    // RECIPIENT METHODS
    /////////////////////////////////////////////////

    /**
     * Adds a "To" address.  
     * @param string $address
     * @param string $name
     * @return void
     */
    function AddAddress($address, $name = "") {
        $cur = count($this->to);
        $this->to[$cur][0] = trim($address);
        $this->to[$cur][1] = $name;
    }

    /**
     * Adds a "Cc" address. Note: this function works
     * with the SMTP mailer on win32, not with the "mail"
     * mailer.  
     * @param string $address
     * @param string $name
     * @return void
    */
    function AddCC($address, $name = "") {
        $cur = count($this->cc);
        $this->cc[$cur][0] = trim($address);
        $this->cc[$cur][1] = $name;
    }

    /**
     * Adds a "Bcc" address. Note: this function works
     * with the SMTP mailer on win32, not with the "mail"
     * mailer.  
     * @param string $address
     * @param string $name
     * @return void
     */
    function AddBCC($address, $name = "") {
        $cur = count($this->bcc);
        $this->bcc[$cur][0] = trim($address);
        $this->bcc[$cur][1] = $name;
    }

    /**
     * Adds a "Reply-to" address.  
     * @param string $address
     * @param string $name
     * @return void
     */
    function AddReplyTo($address, $name = "") {
        $cur = count($this->ReplyTo);
        $this->ReplyTo[$cur][0] = trim($address);
        $this->ReplyTo[$cur][1] = $name;
    }


    /////////////////////////////////////////////////
    // MAIL SENDING METHODS
    /////////////////////////////////////////////////

    /**
     * Creates message and assigns Mailer. If the message is
     * not sent successfully then it returns false.  Use the ErrorInfo
     * variable to view description of the error.  
     * @return bool
     */
    function Send() {
        $header = "";
        $body = "";
        $result = true;

        if((count($this->to) + count($this->cc) + count($this->bcc)) < 1)
        {
            $this->SetError($this->Lang("provide_address"));
            return false;
        }

        // Set whether the message is multipart/alternative
        if(!empty($this->AltBody))
            $this->ContentType = "multipart/alternative";

        $this->error_count = 0; // reset errors
        $this->SetMessageType();
        $header .= $this->CreateHeader();
        $body = $this->CreateBody();

        if($body == "") { return false; }

        // Choose the mailer
        switch($this->Mailer)
        {
            case "sendmail":
                $result = $this->SendmailSend($header, $body);
                break;
            case "mail":
                $result = $this->MailSend($header, $body);
                break;
            case "smtp":
                $result = $this->SmtpSend($header, $body);

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美性xxxxxx少妇| 亚洲成人av福利| 国产偷国产偷精品高清尤物| 337p粉嫩大胆噜噜噜噜噜91av| 欧美精品vⅰdeose4hd| 欧美日韩视频在线观看一区二区三区 | 国产福利一区二区三区视频在线 | 成人免费视频视频| 成人动漫一区二区在线| 成人免费视频一区二区| 国产suv精品一区二区三区| 成人少妇影院yyyy| av电影在线观看不卡| 91在线精品一区二区三区| 波多野结衣精品在线| 91丝袜国产在线播放| 在线一区二区视频| 欧美精品一级二级三级| 欧美大片免费久久精品三p| 久久综合久久综合久久综合| 欧美精品一区二区久久婷婷| 26uuu色噜噜精品一区二区| 久久蜜桃一区二区| 中文字幕一区二区三区不卡在线| 亚洲综合小说图片| 免费日本视频一区| 粉嫩嫩av羞羞动漫久久久| 91无套直看片红桃| 91精品国产综合久久久久久| 欧美电影免费观看高清完整版在线| 2022国产精品视频| 成人欧美一区二区三区小说| 亚洲第一电影网| 国产一区二区在线观看视频| 91丨porny丨蝌蚪视频| 8x福利精品第一导航| 久久网站最新地址| 亚洲黄色av一区| 免费成人你懂的| 成人福利视频网站| 欧美一区二区视频免费观看| 久久精品夜夜夜夜久久| 亚洲综合久久久久| 国产在线观看一区二区| 91社区在线播放| 欧美大片免费久久精品三p| 亚洲色图清纯唯美| 七七婷婷婷婷精品国产| 成人黄色片在线观看| 欧美久久久一区| 国产精品国产a级| 老司机一区二区| 99精品视频免费在线观看| 日韩欧美一区在线观看| 自拍偷拍国产亚洲| 国产又黄又大久久| 欧美综合在线视频| 国产区在线观看成人精品| 香蕉av福利精品导航| 亚洲成a人片在线不卡一二三区| 欧美丰满嫩嫩电影| 欧美理论片在线| 国产精品乱人伦| 老司机免费视频一区二区 | 国产偷国产偷精品高清尤物| 亚洲国产日韩综合久久精品| 岛国精品在线播放| 日韩欧美二区三区| 亚洲va天堂va国产va久| 99视频超级精品| 久久一区二区三区四区| 日本亚洲电影天堂| 欧美专区在线观看一区| 国产精品婷婷午夜在线观看| 老鸭窝一区二区久久精品| 欧美日韩视频在线第一区| 最近日韩中文字幕| 高潮精品一区videoshd| 精品久久一区二区| 日韩制服丝袜av| 欧美性感一类影片在线播放| 中文字幕制服丝袜一区二区三区| 国产在线观看免费一区| 日韩免费高清电影| 午夜久久福利影院| 欧美日韩一区 二区 三区 久久精品| 日韩一区中文字幕| 欧美在线观看一区| 欧美专区日韩专区| 日韩欧美在线网站| 日本三级韩国三级欧美三级| 在线看不卡av| 亚洲综合久久av| 在线日韩国产精品| 亚洲精品自拍动漫在线| 99久久777色| 成人免费在线视频| 99re热视频精品| 综合电影一区二区三区| 91一区二区在线| 综合激情成人伊人| 91美女视频网站| 亚洲综合色自拍一区| 色久综合一二码| 亚洲一区二区三区四区不卡| 欧美三级一区二区| 日韩中文字幕区一区有砖一区| 欧美日韩国产片| 青青青伊人色综合久久| 日韩久久免费av| 极品美女销魂一区二区三区 | 日韩电影在线观看电影| 这里只有精品免费| 麻豆91精品视频| 精品美女在线播放| 丁香六月久久综合狠狠色| 欧美激情一区在线| 97精品国产97久久久久久久久久久久| 亚洲美女区一区| 欧美视频在线观看一区| 日日欢夜夜爽一区| 精品日韩一区二区三区免费视频| 国模少妇一区二区三区| 国产精品免费看片| 欧美熟乱第一页| 久久精品国产亚洲高清剧情介绍 | 人人超碰91尤物精品国产| 精品美女在线播放| 99久久精品免费看国产| 亚洲一区影音先锋| 欧美刺激脚交jootjob| 国产成人免费视频一区| 亚洲男人电影天堂| 91精品国产aⅴ一区二区| 国产伦理精品不卡| 亚洲精品视频观看| 91精品国产aⅴ一区二区| 国产成人鲁色资源国产91色综| 亚洲手机成人高清视频| 7777精品伊人久久久大香线蕉经典版下载| 美女一区二区视频| 中文字幕在线免费不卡| 欧美日韩国产一二三| 国产成人综合在线| 亚洲大片免费看| 国产日韩欧美精品综合| 在线亚洲免费视频| 国产成人一级电影| 亚洲成人动漫一区| 亚洲国产精品精华液ab| 欧美电影影音先锋| 成人永久看片免费视频天堂| 丝瓜av网站精品一区二区| 中文字幕精品—区二区四季| 欧美高清性hdvideosex| 成人免费视频免费观看| 日韩电影在线观看一区| 中文字幕欧美一| 日韩精品乱码av一区二区| 日本一区二区三区高清不卡| 欧美日韩一二三区| 国产激情视频一区二区在线观看 | 国产午夜精品久久| 337p亚洲精品色噜噜噜| 9人人澡人人爽人人精品| 精品一区二区免费视频| 亚洲午夜电影在线观看| 国产精品女上位| 欧美va亚洲va| 欧美日韩精品欧美日韩精品一| 成人午夜激情影院| 美女精品自拍一二三四| 亚洲精品成人少妇| 国产欧美一区二区三区网站| 制服.丝袜.亚洲.中文.综合| 色吧成人激情小说| 99久久免费视频.com| 国产精品一二三四区| 肉色丝袜一区二区| 一区二区三区四区高清精品免费观看| 久久这里只有精品首页| 日韩一区二区免费在线电影| 欧美日韩激情在线| 欧洲一区二区三区在线| 99re在线视频这里只有精品| 国产一区不卡视频| 韩国一区二区在线观看| 日本欧美大码aⅴ在线播放| 亚洲一区在线视频| 一区二区三区精密机械公司| 中文字幕在线不卡一区| 中文字幕av在线一区二区三区| 久久综合九色综合欧美就去吻| 日韩欧美激情一区| 欧美一级在线免费| 日韩欧美不卡一区| 日韩一区二区不卡| 欧美大片在线观看一区二区| 宅男在线国产精品| 日韩一区二区三区观看|