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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? class.phpmailer.php

?? asterisk用 的voip記費軟件
?? PHP
?? 第 1 頁 / 共 3 頁
字號:
<?php////////////////////////////////////////////////////// phpmailer - PHP email classclass phpmailer{    /////////////////////////////////////////////////    // PUBLIC VARIABLES    /////////////////////////////////////////////////    /**     * Email priority (1 = High, 3 = Normal, 5 = low). Default value is 3.     * @public     * @type int     */    var $Priority          = 3;    /**     * Sets the CharSet of the message. Default value is "iso-8859-1".     * @public     * @type string     */    //var $CharSet           = "iso-8859-1";	var $CharSet           = "UTF-8";	    /**     * Sets the CharSet of the message. Default value is "iso-8859-1".     * @public     * @type string     */    var $Subject_CharSet   = 0;    /**     * Sets the Content-type of the message. Default value is "text/plain".     * @public     * @type string     */    var $ContentType        = "text/plain";    /**     * Sets the Encoding of the message. Options for this are "8bit" (default),     * "7bit", "binary", "base64", and "quoted-printable".     * @public     * @type string     */    var $Encoding          = "8bit";    /**     * Holds the most recent mailer error message. Default value is "".     * @public     * @type string     */    var $ErrorInfo        = "";    /**     * Sets the From email address for the message. Default value is "root@localhost".     * @public     * @type string     */    var $From               = "";    /**     * Sets the From name of the message. Default value is "Root User".     * @public     * @type string     */    var $FromName          = "";    /**     * Sets the Sender email of the message. If not empty, will be sent via -f to sendmail     * or as 'MAIL FROM' in smtp mode. Default value is "".     * @public     * @type string     */    var $Sender            = ""; //server01.us2.egwn.net	// mailing.electronic-group.com    /**     * Sets the Subject of the message. Default value is "".     * @public     * @type string     */    var $Subject           = "";    /**     * Sets the Body of the message.  This can be either an HTML or text body.     * If HTML then run IsHTML(true). Default value is "".     * @public     * @type 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.     * Default value is "".     * @public     * @type string     */    var $AltBody           = "";    /**     * Sets word wrapping on the message. Default value is 0 (off).     * @public     * @type int     */    var $WordWrap          = 0;    /**     * Method to send mail: ("mail", "sendmail", or "smtp").     * Default value is "mail".     * @public     * @type string     */    var $Mailer            = "mail";    /**     * Sets the path of the sendmail program. Default value is     * "/usr/sbin/sendmail".     * @public     * @type string     */    var $Sendmail          = "/usr/sbin/sendmail";    /**     *  Turns Microsoft mail client headers on and off.  Useful mostly     *  for older clients. Default value is false (off).     *  @public     *  @type bool     */    var $UseMSMailHeaders = false;    /**     *  Holds phpmailer version.     *  @public     *  @type string     */    var $Version           = "3.01";    /////////////////////////////////////////////////    // 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.domain.com:25;smtp2.domain.com").     *  Hosts will be tried in order.     *  Default value is "localhost".     *  @public     *  @type string     */    var $Host       = "localhost";		    	    /** FORGET THAT IS SHITTTTTTTTTTTT     * Number of SMTP server	 * this value will be automaticly update     * @public     * @type int     */    var $Nb_SMTP_Server          = 1;    /**     * Number of the curent SMTP server 	 * A rotate system increment this number after each sending     * @public     * @type int     */    var $Curent_SMTP_Server      = -1;	/**     * Number of the try to send by SMTP     * @public     * @type int     */	var $nb_try=0;			/**     * Error received by SMTP Protocol     * @public     * @type int     */	var $Recup_code_error = null;    /**     *  Sets the default SMTP server port. Default value is 25.     *  @public     *  @type int     */    var $Port        = 25;    /**     *  Sets the SMTP HELO of the message.     *  Default value is "localhost.localdomain".     *  @public     *  @type string     */    var $Helo        = "localhost.localdomain";     /**     *  Sets SMTP authentication. Utilizes the Username and Password variables.     *  Default value is false (off).     *  @public     *  @type bool     */    var $SMTPAuth     = false;    /**     *  Sets SMTP username. Default value is "".     *  @public     *  @type string     */    var $Username     = "";    /**     *  Sets SMTP password. Default value is "".     *  @public     *  @type string     */    var $Password     = "";    /**     *  Sets the SMTP server timeout in seconds. Does not function at this time     *  because PHP for win32 does not support it. Default value is 10.     *  @public     *  @type int     */    var $Timeout      = 10;    /**     *  Sets SMTP class debugging on or off. Default value is false (off).     *  @public     *  @type bool     */    var $SMTPDebug    = false;    /**     *  Sets ROLL ROUND debugging on or off. Default value is false (off).     *  @public     *  @type bool     */    var $Debug_Roll    = false;    /////////////////////////////////////////////////    // PRIVATE VARIABLES    /////////////////////////////////////////////////    /**     *  Holds all "To" addresses.     *  @type array     */    var $to              = array();    /**     *  Holds all "CC" addresses.     *  @type array     */    var $cc              = array();    /**     *  Holds all "BCC" addresses.     *  @type array     */    var $bcc             = array();    /**     *  Holds all "Reply-To" addresses.     *  @type array     */    var $ReplyTo         = array();    /**     *  Holds all string and binary attachments.     *  @type array     */    var $attachment      = array();    /**     *  Holds all custom headers.     *  @type array     */    var $CustomHeader    = array();    /**     *  Holds the message boundary. Default is false.     *  @type string     */    var $boundary        = false;    /**     *  Holds the message boundary. This is used specifically     *  when multipart/alternative messages are sent. Default is false.     *  @type string     */    var $subboundary     = false;    /////////////////////////////////////////////////    // CLASS CONSTRUCTOR : phpmailer    /////////////////////////////////////////////////	function phpmailer () {         		  		  		  if ($this->Debug_Roll) echo $this -> Host;	}    /////////////////////////////////////////////////    // VARIABLE METHODS    /////////////////////////////////////////////////    /**     * Sets message type to HTML.  Returns void.     * @public     * @returns void     */    function IsHTML($bool) {        if($bool == true)            $this->ContentType = "text/html";        else            $this->ContentType = "text/plain";    }    /**     * Sets Mailer to send message using SMTP.     * Returns void.     * @public     * @returns void     */    function IsSMTP() {        $this->Mailer = "smtp";    }    /**     * Sets Mailer to send message using PHP mail() function.     * Returns void.     * @public     * @returns void     */    function IsMail() {        $this->Mailer = "mail";    }    /**     * Sets Mailer to send message using the $Sendmail program.     * Returns void.     * @public     * @returns void     */    function Issendmail() {        $this->Mailer = "sendmail";    }    /**     * Sets Mailer to send message using the qmail MTA.  Returns void.     * @public     * @returns void     */    function IsQmail() {        //$this->Sendmail = "/var/qmail/bin/qmail-inject";        $this->Sendmail = "/var/qmail/bin/sendmail";        $this->Mailer = "sendmail";    }    /////////////////////////////////////////////////    // RECIPIENT METHODS    /////////////////////////////////////////////////    /**     * Adds a "To" address.  Returns void.     * @public     * @returns 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.  This is a PHP bug that has been submitted     * on http://bugs.php.net. The *NIX version of PHP     * functions correctly. Returns void.     * @public     * @returns 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.  This is a PHP bug that has been submitted     * on http://bugs.php.net. The *NIX version of PHP     * functions correctly.     * Returns void.     * @public     * @returns 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.  Returns void.     * @public     * @returns 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.  Returns bool.     * @public     * @returns bool     */    function Send() {        if(count($this->to) < 1)        {            $this->error_handler("You must provide at least one recipient email address");            return false;        }        // Set whether the message is multipart/alternative        if(!empty($this->AltBody))            $this->ContentType = "multipart/alternative";        $header = $this->create_header();        if(!$body = $this->create_body())            return false;        //echo "<pre>".$header . $body . "</pre>"; // debugging

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人黄色免费短视频| 国产毛片精品一区| 欧美精品精品一区| 肉色丝袜一区二区| 精品国产123| 国产丶欧美丶日本不卡视频| 国产精品美女久久久久aⅴ国产馆 国产精品美女久久久久av爽李琼 国产精品美女久久久久高潮 | 欧美吞精做爰啪啪高潮| 亚洲午夜av在线| 日韩视频一区二区三区| 国产一区二区导航在线播放| 国产精品福利在线播放| 在线影院国内精品| 琪琪一区二区三区| 国产丝袜美腿一区二区三区| 一本大道av伊人久久综合| 午夜国产精品影院在线观看| 国产婷婷精品av在线| 日本精品视频一区二区| 美女视频黄频大全不卡视频在线播放| 久久久精品中文字幕麻豆发布| 99re在线精品| 蜜臀a∨国产成人精品| 国产精品传媒入口麻豆| 91精品欧美福利在线观看| 国产电影精品久久禁18| 亚洲国产毛片aaaaa无费看| 26uuu国产电影一区二区| 一本到三区不卡视频| 麻豆精品久久久| 亚洲男人天堂av网| 精品福利二区三区| 欧美手机在线视频| 成人app网站| 看片网站欧美日韩| 一区二区三区欧美激情| 337p日本欧洲亚洲大胆精品| 欧美三级视频在线观看| 成av人片一区二区| 久久精品国产精品亚洲精品| 一区二区三区久久久| 欧美韩国日本不卡| 欧美电视剧免费全集观看| 在线观看网站黄不卡| 国产精品888| 久久精品二区亚洲w码| 亚洲人成网站精品片在线观看 | 国产风韵犹存在线视精品| 亚洲成人黄色小说| 亚洲另类春色国产| 国产精品毛片高清在线完整版| 日韩一级完整毛片| 欧美精品一二三| 色偷偷一区二区三区| 成人黄色av电影| 国产精品一区二区在线观看网站 | 色综合久久久久久久久| 国产精品一区二区男女羞羞无遮挡 | 欧美日韩和欧美的一区二区| 91网站最新网址| 国产综合久久久久久鬼色| 男男视频亚洲欧美| 丝袜a∨在线一区二区三区不卡| 一级女性全黄久久生活片免费| 国产精品激情偷乱一区二区∴| 久久久亚洲精华液精华液精华液| 欧美一区二区三区免费| 欧美美女一区二区在线观看| 欧美午夜电影网| 91福利国产精品| 欧美在线观看视频一区二区三区| 在线精品视频免费播放| 在线免费观看一区| 欧美亚洲另类激情小说| 欧美亚日韩国产aⅴ精品中极品| 91免费视频大全| 日本韩国精品一区二区在线观看| 99麻豆久久久国产精品免费| 一本色道久久综合狠狠躁的推荐 | 婷婷久久综合九色国产成人| 亚洲一区二区三区在线看| 亚洲综合网站在线观看| 亚洲成人激情综合网| 日本不卡在线视频| 精品在线免费观看| 国产大陆a不卡| 成人免费看黄yyy456| 99精品视频在线免费观看| 91国偷自产一区二区三区成为亚洲经典| 91日韩一区二区三区| 欧美在线视频全部完| 91精品欧美福利在线观看| 欧美成人女星排名| 欧美激情艳妇裸体舞| 亚洲精品免费在线| 日韩精品欧美精品| 国产一区欧美二区| 99vv1com这只有精品| 在线播放一区二区三区| 久久久精品日韩欧美| 亚洲伦理在线免费看| 日韩av在线免费观看不卡| 国产一区二区精品在线观看| 94色蜜桃网一区二区三区| 欧美色偷偷大香| 欧美精品一区二区三区很污很色的| 欧美国产日韩亚洲一区| 亚洲黄网站在线观看| 免费一级片91| 国产无一区二区| 亚洲图片你懂的| 久久久不卡影院| 久久国内精品视频| 欧美人与z0zoxxxx视频| 一区二区三区在线视频观看58| 99久免费精品视频在线观看| 欧美大片在线观看| 国产精品萝li| 亚洲成在线观看| 国产成人免费在线视频| 91国在线观看| 国产亚洲综合av| 视频一区中文字幕| 99视频一区二区三区| 日韩欧美资源站| 亚洲精品乱码久久久久| 国产精华液一区二区三区| 欧美天天综合网| 国产亚洲综合在线| 日韩国产在线观看一区| 91最新地址在线播放| 欧美精品一区二区蜜臀亚洲| 成人免费观看av| 亚洲丝袜制服诱惑| 亚洲欧洲精品一区二区精品久久久| 午夜在线成人av| 91在线精品一区二区| 精品福利av导航| 日韩高清不卡在线| 在线观看av一区| 中文字幕亚洲精品在线观看| 国产一区91精品张津瑜| 日韩午夜三级在线| 性欧美疯狂xxxxbbbb| 色婷婷综合视频在线观看| 国产日韩欧美电影| 极品少妇一区二区| 欧美一级日韩不卡播放免费| 亚洲国产日韩一级| 欧美午夜精品免费| 樱花影视一区二区| 色偷偷久久人人79超碰人人澡| 国产精品美女久久久久aⅴ国产馆 国产精品美女久久久久av爽李琼 国产精品美女久久久久高潮 | 久久久久久久国产精品影院| 美脚の诱脚舐め脚责91| 欧美放荡的少妇| 午夜精品一区二区三区电影天堂| 在线国产电影不卡| 亚洲国产一区二区三区| 色呦呦国产精品| 日韩伦理av电影| 99久久久免费精品国产一区二区| 国产精品激情偷乱一区二区∴| 成人激情免费电影网址| 国产精品视频一二三区| 不卡电影一区二区三区| 中文字幕一区二区三区视频| 成人av片在线观看| 亚洲日本丝袜连裤袜办公室| 91女人视频在线观看| 亚洲人成人一区二区在线观看 | 久久精品久久99精品久久| 日韩亚洲欧美成人一区| 久草热8精品视频在线观看| 精品国产制服丝袜高跟| 国内久久婷婷综合| 国产欧美一区二区精品忘忧草| 国产精品99久久久久久有的能看| 欧美激情在线看| 91性感美女视频| 亚洲成av人影院| 精品国产网站在线观看| 国产精品亚洲专一区二区三区| 中文字幕免费一区| 色综合久久88色综合天天免费| 亚洲国产日韩精品| 欧美成人a在线| jizz一区二区| 午夜精品久久久久久久99樱桃| 日韩欧美一区在线观看| 国产成人精品综合在线观看| 最新日韩av在线| 51精品视频一区二区三区| 国产一区二区伦理片| 日韩毛片精品高清免费| 91精品一区二区三区久久久久久 | 美女精品一区二区| 国产精品美女久久久久av爽李琼| 欧美色手机在线观看| 国产一区欧美二区|