<?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.14';
/**
* 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.
* @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 string
*/
public $Password = '';
/**
* SMTP auth type.
* Options are LOGIN (default), PLAIN, NTLM, CRAM-MD5
* @var string
*/
public $AuthType = '';
/**
* SMTP
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
包含了邀请功能带三级返利 任务返利也带三级功能 后台可以设置 开通会员的级别的费用以及返利的金额 可以设置任务分类里面哪个分类需要什么级别会员才可以接单或者发布任务,以及发布和接单的金额和任务条数 可以在线开通和充值,接口是每个人都可以使用的码支付接口,包含了支付宝免签约 和微信免签约,个人站长就可以运营 前台含有邀请二维码和链接推广功能,显示自己团队组成和邀请自己获得的返利详情 后台带管理员权限设置 充值记录 资金流水 提现管理 充值管理等等1、99元成为VIP会员,天天领取2条义务发同伙圈,立得8元/天天! 2、分享石友成为VIP会员可得奖励,一级8元,二级还有8元。10个一级VIP会员,就有80元收入,100个一级VIP会员,就有800元收入,VIP会员越多,收益也越多。 3、一级VIP会员发圈你能够得4元/天天,分享10个就40元/天天,100个就400元/天天,分享越多,收益越多!(天天被动自动收入的哦) 4、二级VIP会员发圈你还能够得2元/天天,分享10个就20元/天,100个就200元/天天,分享越多,收益越多!(天天被动自动收入的哦) 5、VIP会员能够投放广告,投放胜利可得30%的广告奖励! 6、直推50人进级VIP拿无限代收益!让你的同伙圈酿成银行提款机。收入日结,提现秒到! 7、拿起手机一路来发同伙圈赚钱吧
资源详情
资源评论
资源推荐
收起资源包目录
霸屏天下/发吧传媒/98云媒源码完整版 (5984个子文件)
EveryHour.bat 175B
EveryMinute.bat 170B
merge.bat 22B
test.bmp 0B
CHANGELOG 1KB
common.min.css 244KB
bootstrap.css 151KB
bootstrap.css 149KB
AdminLTE.css 132KB
bootstrap.min.css 118KB
bootstrap.min.css 115KB
AdminLTE.min.css 104KB
AdminLTE-without-plugins.css 92KB
home.css 84KB
AdminLTE-without-plugins.min.css 72KB
ionicons.css 57KB
ionicons.min.css 50KB
_all-skins.css 49KB
ueditor.css 45KB
_all-skins.min.css 41KB
font-awesome.css 39KB
style.css 37KB
mobiscroll.custom-2.5.2.min.css 36KB
ueditor.min.css 34KB
new_style.css 30KB
font-awesome.min.css 30KB
layui.css 27KB
bootstrap-theme.css 26KB
new_page.css 26KB
font-awesome.min.css 23KB
bootstrap-theme.min.css 23KB
video-js.css 22KB
image.css 19KB
base.css 18KB
AdminLTE-bootstrap-social.css 16KB
dialog.css 16KB
video.css 15KB
attachment.css 15KB
swiper.min.css 15KB
mobiscroll.animation-2.6.2.css 13KB
mobiscroll.animation-2.5.2.css 13KB
AdminLTE-bootstrap-social.min.css 12KB
video-js.min.css 11KB
bootstrap-datetimepicker.min.css 11KB
mobiscroll.wp-2.5.2.css 10KB
nv.d3.min.css 9KB
mobiscroll.ios-2.6.2.css 9KB
mobiscroll.core-2.6.2.css 9KB
mobiscroll.core-2.5.2.css 9KB
mobiscroll.ios-2.5.1.css 8KB
shCoreDefault.css 7KB
tmpl.css 7KB
jquery.magnify.css 7KB
daterangepicker.css 5KB
mobiscroll.android-ics-2.5.2.css 5KB
spop.min.css 5KB
skin-black-light.css 5KB
skin-blue-light.css 5KB
skin-yellow-light.css 4KB
skin-purple-light.css 4KB
skin-green-light.css 4KB
skin-red-light.css 4KB
skin-black.css 4KB
public.css 4KB
jquery.magnify.min.css 4KB
skin-black-light.min.css 4KB
skin-blue-light.min.css 4KB
scrawl.css 4KB
skin-blue.css 4KB
skin-yellow-light.min.css 4KB
skin-purple-light.min.css 4KB
skin-green-light.min.css 4KB
skin-purple.css 4KB
skin-yellow.css 4KB
skin-green.css 4KB
skin-red-light.min.css 4KB
skin-red.css 3KB
skin-black.min.css 3KB
skin-blue.min.css 3KB
AdminLTE-select2.css 3KB
signin.css 3KB
skin-yellow.min.css 3KB
skin-purple.min.css 3KB
skin-green.min.css 3KB
codemirror.css 3KB
skin-red.min.css 3KB
reset_5.css 3KB
charts.css 3KB
AdminLTE-select2.min.css 3KB
bootstrap3-wysihtml5.css 3KB
lightbox.min.css 3KB
background.css 2KB
bootstrap3-wysihtml5.min.css 2KB
mobiscroll.android-2.5.1.css 2KB
AdminLTE-fullcalendar.css 2KB
emotion.css 2KB
style.css 2KB
dialogbase.css 2KB
mobiscroll.sense-ui-2.5.1.css 2KB
music.css 2KB
共 5984 条
- 1
- 2
- 3
- 4
- 5
- 6
- 60
qq_42966617
- 粉丝: 12
- 资源: 11
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 大学生职业生涯规划书Word模板范文就业求职简历应聘工作PPT工业工程专业
- 滑块验证码前后端文件js vue java
- 大学生职业生涯规划书Word模板范文就业求职简历应聘工作PPT工商管理专业
- 大学生职业生涯规划书Word模板范文就业求职简历应聘工作PPT工程造价专业
- 大学生职业生涯规划书Word模板范文就业求职简历应聘工作PPT工程管理专业
- 大学生职业生涯规划书Word模板范文就业求职简历应聘工作PPT给排水专业
- satgfjfenfghui
- 大学生职业生涯规划书Word模板范文就业求职简历应聘工作PPT服装设计专业
- 百度快照MATLAB GUI界面软件设计GUI面板
- 大学生职业生涯规划书Word模板范文就业求职简历应聘工作PPT法学专业
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
评论1