<?php
/**
* PHPMailer - PHP email creation and transport class.
* PHP Version 5
* @package PHPMailer
* @link https://github.com/PHPMailer/PHPMailer/ The PHPMailer GitHub project
* @author Marcus Bointon (Synchro/coolbru) <phpmailer@synchromedia.co.uk>
* @author Jim Jagielski (jimjag) <jimjag@gmail.com>
* @author Andy Prevost (codeworxtech) <codeworxtech@users.sourceforge.net>
* @author Brent R. Matzelle (original founder)
* @copyright 2012 - 2014 Marcus Bointon
* @copyright 2010 - 2012 Jim Jagielski
* @copyright 2004 - 2009 Andy Prevost
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
* @note This program is distributed in the hope that it will be useful - WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE.
*/
/**
* PHPMailer - PHP email creation and transport class.
* @package PHPMailer
* @author Marcus Bointon (Synchro/coolbru) <phpmailer@synchromedia.co.uk>
* @author Jim Jagielski (jimjag) <jimjag@gmail.com>
* @author Andy Prevost (codeworxtech) <codeworxtech@users.sourceforge.net>
* @author Brent R. Matzelle (original founder)
*/
class PHPMailer
{
/**
* The PHPMailer Version number.
* @var string
*/
public $Version = '5.2.22';
/**
* Email priority.
* Options: null (default), 1 = High, 3 = Normal, 5 = low.
* When null, the header is not set at all.
* @var integer
*/
public $Priority = null;
/**
* The character set of the message.
* @var string
*/
public $CharSet = 'iso-8859-1';
/**
* The MIME Content-type of the message.
* @var string
*/
public $ContentType = 'text/plain';
/**
* The message encoding.
* Options: "8bit", "7bit", "binary", "base64", and "quoted-printable".
* @var string
*/
public $Encoding = '8bit';
/**
* Holds the most recent mailer error message.
* @var string
*/
public $ErrorInfo = '';
/**
* The From email address for the message.
* @var string
*/
public $From = 'root@localhost';
/**
* The From name of the message.
* @var string
*/
public $FromName = 'Root User';
/**
* 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
*/
public $Sender = '';
/**
* The Return-Path of the message.
* If empty, it will be set to either From or Sender.
* @var string
* @deprecated Email senders should never set a return-path header;
* it's the receiver's job (RFC5321 section 4.4), so this no longer does anything.
* @link https://tools.ietf.org/html/rfc5321#section-4.4 RFC5321 reference
*/
public $ReturnPath = '';
/**
* The Subject of the message.
* @var string
*/
public $Subject = '';
/**
* An HTML or plain text message body.
* If HTML then call isHTML(true).
* @var string
*/
public $Body = '';
/**
* The plain-text message body.
* This body can be read by mail clients that do not have HTML email
* capability such as mutt & Eudora.
* Clients that can read HTML will view the normal Body.
* @var string
*/
public $AltBody = '';
/**
* An iCal message part body.
* Only supported in simple alt or alt_inline message types
* To generate iCal events, use the bundled extras/EasyPeasyICS.php class or iCalcreator
* @link http://sprain.ch/blog/downloads/php-class-easypeasyics-create-ical-files-with-php/
* @link http://kigkonsult.se/iCalcreator/
* @var string
*/
public $Ical = '';
/**
* The complete compiled MIME message body.
* @access protected
* @var string
*/
protected $MIMEBody = '';
/**
* The complete compiled MIME message headers.
* @var string
* @access protected
*/
protected $MIMEHeader = '';
/**
* Extra headers that createHeader() doesn't fold in.
* @var string
* @access protected
*/
protected $mailHeader = '';
/**
* Word-wrap the message body to this number of chars.
* Set to 0 to not wrap. A useful value here is 78, for RFC2822 section 2.1.1 compliance.
* @var integer
*/
public $WordWrap = 0;
/**
* Which method to use to send mail.
* Options: "mail", "sendmail", or "smtp".
* @var string
*/
public $Mailer = 'mail';
/**
* The path to the sendmail program.
* @var string
*/
public $Sendmail = '/usr/sbin/sendmail';
/**
* Whether mail() uses a fully sendmail-compatible MTA.
* One which supports sendmail's "-oi -f" options.
* @var boolean
*/
public $UseSendmailOptions = true;
/**
* Path to PHPMailer plugins.
* Useful if the SMTP class is not in the PHP include path.
* @var string
* @deprecated Should not be needed now there is an autoloader.
*/
public $PluginDir = '';
/**
* The email address that a reading confirmation should be sent to, also known as read receipt.
* @var string
*/
public $ConfirmReadingTo = '';
/**
* The hostname to use in the Message-ID header and as default HELO string.
* If empty, PHPMailer attempts to find one with, in order,
* $_SERVER['SERVER_NAME'], gethostname(), php_uname('n'), or the value
* 'localhost.localdomain'.
* @var string
*/
public $Hostname = '';
/**
* An ID to be used in the Message-ID header.
* If empty, a unique id will be generated.
* You can set your own, but it must be in the format "<id@domain>",
* as defined in RFC5322 section 3.6.4 or it will be ignored.
* @see https://tools.ietf.org/html/rfc5322#section-3.6.4
* @var string
*/
public $MessageID = '';
/**
* The message Date to be used in the Date header.
* If empty, the current date will be added.
* @var string
*/
public $MessageDate = '';
/**
* SMTP hosts.
* Either a single hostname or multiple semicolon-delimited hostnames.
* 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").
* You can also specify encryption type, for example:
* (e.g. "tls://smtp1.example.com:587;ssl://smtp2.example.com:465").
* Hosts will be tried in order.
* @var string
*/
public $Host = 'localhost';
/**
* The default SMTP server port.
* @var integer
* @TODO Why is this needed when the SMTP class takes care of it?
*/
public $Port = 25;
/**
* The SMTP HELO of the message.
* Default is $Hostname. If $Hostname is empty, PHPMailer attempts to find
* one with the same method described above for $Hostname.
* @var string
* @see PHPMailer::$Hostname
*/
public $Helo = '';
/**
* What kind of encryption to use on the SMTP connection.
* Options: '', 'ssl' or 'tls'
* @var string
*/
public $SMTPSecure = '';
/**
* Whether to enable TLS encryption automatically if a server supports it,
* even if `SMTPSecure` is not set to 'tls'.
* Be aware that in PHP >= 5.6 this requires that the server's certificates are valid.
* @var boolean
*/
public $SMTPAutoTLS = true;
/**
* Whether to use SMTP authentication.
* Uses the Username and Password properties.
* @var boolean
* @see PHPMailer::$Username
* @see PHPMailer::$Password
*/
public $SMTPAuth = false;
/**
* Options array passed to stream_context_create when connecting via SMTP.
* @var array
*/
public $SMTPOptions = array();
/**
* SMTP username.
* @var string
*/
public $Username = '';
/**
* SMTP password.
* @var strin
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
PHP多坐席客服聊天系统源码完美定制版 带原生app 搭建教程: 1,宝塔liunx和win系统,环境Apache2.4.41 PHP5.6以上 2,创建站点设置下数据库密码, 3上传源码后解压下不需要修改源码里数据库信息也不用导入数据库 4,打开你域名网站后会提示安装页面按照里面填下数据信息和后台账号密码后点安装即可成功后系统 5,这套系统有带手机app的具体使用app里有教程 6,客服专属聊天链接:你的域名/php/app.php?widget-mobile app使用教程 安卓手机APP客服端安装好之后 1、打开移动应用; 2、添加新的服务器; 3、使用APP自带的扫码功能; 4、扫描“在线客服系统WEB管理端后台的QR码”进行绑定; 5、绑定成功后给服务器起一个名称(中文英文随便); 6、点击保存按钮; 7、点击服务器填写“登录表单”后开始使用在线客服系统;
资源推荐
资源详情
资源评论
收起资源包目录
PHP多坐席客服聊天系统源码完美定制版 带原生app.rar (448个子文件)
chat.jbest.vip.apk 50.67MB
gumby.css 169KB
admin.css 37KB
main.css 31KB
font-awesome.min.css 26KB
jquery-ui-1.10.3.custom.css 25KB
framework.css 10KB
bootstrap.css 10KB
widget-mobile.css 6KB
fonts.css 6KB
jquery.mCustomScrollbar.css 5KB
bootstrap-popover.css 4KB
colorpicker.css 3KB
style.css 1KB
open-sans-v13-cyrillic_latin_latin-ext_cyrillic-ext-600.eot 98KB
open-sans-v13-cyrillic_latin_latin-ext_cyrillic-ext-300.eot 97KB
open-sans-v13-cyrillic_latin_latin-ext_cyrillic-ext-regular.eot 96KB
open-sans-v13-cyrillic_latin_latin-ext_cyrillic-ext-600italic.eot 96KB
open-sans-v13-cyrillic_latin_latin-ext_cyrillic-ext-italic.eot 95KB
open-sans-v13-cyrillic_latin_latin-ext_cyrillic-ext-300italic.eot 94KB
entypo.eot 74KB
fontawesome-webfont.eot 67KB
loading.gif 3KB
animated-overlay.gif 2KB
colorpicker_indic.gif 86B
custom_indic.gif 86B
colorpicker_select.gif 78B
blank.gif 43B
.htaccess 89B
.htaccess 13B
.htaccess 13B
.htaccess 13B
.htaccess 13B
.htaccess 13B
.htaccess 13B
.htaccess 13B
读我.html 50KB
admin.html 37KB
index.html 24KB
install-verify.html 15KB
install-wizard.html 15KB
install-wizard-2.html 9KB
common.html 4KB
login.html 3KB
uninstall.html 3KB
install.html 2KB
uninstall-2.html 2KB
install-wizard-3.html 2KB
widget-test.html 657B
fonts.html 221B
index.html 151B
debugScripts.html 100B
index.html 0B
index.html 0B
index.html 0B
index.html 0B
index.html 0B
index.html 0B
index.html 0B
fav.ico 1KB
在线客服温馨提醒.jpg 253KB
customer-chat-admin-libs.min.js 551KB
customer-chat-widget-libs.min.js 510KB
jquery.js 259KB
jquery.ui.min.js 196KB
handlebars.js 156KB
backbone.marionette.js 128KB
customer-chat-admin.min.js 125KB
jquery.min.js 102KB
jquery.min.js 94KB
jquery-1.10.1.min.js 91KB
jquery-2.0.2.min.js 82KB
customer-chat-widget.min.js 62KB
backbone.js 60KB
underscore.js 52KB
WidgetView.js 40KB
gumby.min.js 36KB
soundmanager2-nodebug-jsmin.js 36KB
jquery.mCustomScrollbar.js 33KB
qrcode.js 32KB
AdminChatModel.js 31KB
ChatView.js 25KB
gumby.min.js 20KB
MapView.js 19KB
json2.js 18KB
ChatTabView.js 17KB
colorpicker.js 17KB
GuestChatModel.js 17KB
OperatorsView.js 17KB
HistoryView.js 14KB
es5-shim.min.js 14KB
DepartmentsView.js 11KB
MessageView.js 11KB
MenuView.js 10KB
TabsView.js 10KB
UISettingsModel.js 10KB
CannedMessagesView.js 9KB
desktop-notify.min.js 9KB
modernizr-2.6.2.min.js 9KB
AjaxUploader.js 8KB
共 448 条
- 1
- 2
- 3
- 4
- 5
资源评论
乐江南
- 粉丝: 1
- 资源: 2
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 聊天系统项目全套技术资料100%好用.zip
- putty,linux客户端工具
- 丹佛丝堆垛机变频器参数配置起升、运行、货叉
- redhat-lsb-core,安装磐维数据库,安装oracle数据库等常用的依赖包
- lsb-release,安装磐维数据库,安装oracle数据库等常用的依赖包
- glibc-devel,安装磐维数据库,安装oracle数据库等常用的依赖包
- redhat-lsb-submit-security,安装磐维数据库,安装oracle数据库等常用的依赖包
- 可以在mac下开发的微雪esp32触摸屏开发板的支持包
- redhat-lsb-core,安装磐维数据库,安装oracle数据库等常用的依赖包
- redhat-lsb-core,安装磐维数据库,安装oracle数据库等常用的依赖包
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功