<?php
/**
* PHPMailer - PHP email creation and transport class.
* PHP Version 5.5.
*
* @see 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 - 2017 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.
*/
namespace vae\PHPMailer\PHPMailer;
/**
* PHPMailer - PHP email creation and transport class.
*
* @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
{
const CHARSET_ISO88591 = 'iso-8859-1';
const CHARSET_UTF8 = 'utf-8';
const CONTENT_TYPE_PLAINTEXT = 'text/plain';
const CONTENT_TYPE_TEXT_CALENDAR = 'text/calendar';
const CONTENT_TYPE_TEXT_HTML = 'text/html';
const CONTENT_TYPE_MULTIPART_ALTERNATIVE = 'multipart/alternative';
const CONTENT_TYPE_MULTIPART_MIXED = 'multipart/mixed';
const CONTENT_TYPE_MULTIPART_RELATED = 'multipart/related';
const ENCODING_7BIT = '7bit';
const ENCODING_8BIT = '8bit';
const ENCODING_BASE64 = 'base64';
const ENCODING_BINARY = 'binary';
const ENCODING_QUOTED_PRINTABLE = 'quoted-printable';
/**
* Email priority.
* Options: null (default), 1 = High, 3 = Normal, 5 = low.
* When null, the header is not set at all.
*
* @var int
*/
public $Priority;
/**
* The character set of the message.
*
* @var string
*/
public $CharSet = self::CHARSET_ISO88591;
/**
* The MIME Content-type of the message.
*
* @var string
*/
public $ContentType = self::CONTENT_TYPE_PLAINTEXT;
/**
* The message encoding.
* Options: "8bit", "7bit", "binary", "base64", and "quoted-printable".
*
* @var string
*/
public $Encoding = self::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 envelope sender of the message.
* This will usually be turned into a Return-Path header by the receiver,
* and is the address that bounces will be sent to.
* If not empty, will be passed via `-f` to sendmail or as the 'MAIL FROM' value over SMTP.
*
* @var string
*/
public $Sender = '';
/**
* 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 event structures, use classes like EasyPeasyICS or iCalcreator.
*
* @see http://sprain.ch/blog/downloads/php-class-easypeasyics-create-ical-files-with-php/
* @see http://kigkonsult.se/iCalcreator/
*
* @var string
*/
public $Ical = '';
/**
* The complete compiled MIME message body.
*
* @var string
*/
protected $MIMEBody = '';
/**
* The complete compiled MIME message headers.
*
* @var string
*/
protected $MIMEHeader = '';
/**
* Extra headers that createHeader() doesn't fold in.
*
* @var string
*/
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.
*
* @see static::STD_LINE_LENGTH
*
* @var int
*/
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 bool
*/
public $UseSendmailOptions = true;
/**
* 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 int
*/
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.
*
* @see PHPMailer::$Hostname
*
* @var string
*/
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 bool
*/
public $SMTPAutoTLS = true;
/**
* Whether to use SMTP
没有合适的资源?快使用搜索试试~ 我知道了~
华登区块鱼区块宠物养殖系统源码
共2000个文件
js:933个
php:554个
dat:360个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
5星 · 超过95%的资源 1 下载量 115 浏览量
2022-03-08
17:17:11
上传
评论
收藏 86.98MB ZIP 举报
温馨提示
华登区块鱼区块宠物养殖系统源码 完美修复版,派特宠物街模式区块链源码,程序配套有安卓APP,APP在\\\\public\\\\app目录,内附安装教程
资源推荐
资源详情
资源评论
收起资源包目录
华登区块鱼区块宠物养殖系统源码 (2000个子文件)
catblock.apk 15.06MB
merge.bat 21B
test.bmp 0B
CHANGELOG 1KB
layui.css 68KB
layui.css 68KB
index.css 60KB
ueditor.css 45KB
ueditor.min.css 34KB
video-js.css 22KB
image.css 19KB
video.css 15KB
attachment.css 15KB
layer.css 14KB
layer.css 14KB
video-js.min.css 11KB
layui.mobile.css 10KB
layui.mobile.css 10KB
laydate.css 7KB
laydate.css 7KB
shCoreDefault.css 7KB
vaeyo.css 4KB
scrawl.css 4KB
style.css 3KB
codemirror.css 3KB
charts.css 3KB
background.css 2KB
style-c.css 2KB
emotion.css 2KB
dialogbase.css 2KB
music.css 2KB
edittable.css 1KB
code.css 1KB
code.css 1KB
template.css 1KB
webuploader.css 543B
help.css 395B
iframe.css 42B
mask_177_6.dat 440B
mask_173_6.dat 428B
frame_40.dat 406B
mask_177_7.dat 405B
mask_173_7.dat 402B
frame_39.dat 401B
mask_165_6.dat 400B
mask_161_6.dat 398B
mask_169_6.dat 391B
mask_169_7.dat 382B
mask_161_7.dat 375B
mask_165_7.dat 375B
frame_37.dat 375B
frame_36.dat 370B
mask_149_6.dat 369B
mask_177_5.dat 368B
mask_153_6.dat 367B
mask_173_5.dat 362B
mask_141_6.dat 357B
frame_38.dat 356B
mask_137_6.dat 355B
mask_153_7.dat 350B
mask_149_7.dat 350B
mask_145_6.dat 346B
mask_145_7.dat 343B
frame_33.dat 342B
frame_35.dat 341B
mask_169_5.dat 336B
mask_165_5.dat 332B
mask_157_6.dat 331B
mask_141_7.dat 329B
frame_32.dat 329B
mask_137_7.dat 328B
mask_161_5.dat 327B
frame_31.dat 324B
frame_30.dat 323B
frame_34.dat 322B
frame_28.dat 317B
mask_157_7.dat 316B
mask_177_3.dat 311B
mask_129_6.dat 310B
frame_29.dat 309B
mask_173_3.dat 307B
mask_153_5.dat 306B
mask_121_6.dat 306B
mask_149_5.dat 305B
mask_125_6.dat 302B
mask_113_6.dat 302B
mask_177_4.dat 300B
mask_173_4.dat 299B
mask_117_6.dat 299B
mask_169_4.dat 297B
frame_26.dat 296B
mask_133_6.dat 296B
mask_145_5.dat 295B
mask_121_7.dat 295B
mask_141_5.dat 295B
mask_137_5.dat 292B
mask_161_4.dat 292B
mask_165_4.dat 291B
frame_24.dat 287B
mask_125_7.dat 285B
共 2000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 20
资源评论
- Unipi2024-08-16感谢资源主的分享,很值得参考学习,资源价值较高,支持!
智慧浩海
- 粉丝: 1w+
- 资源: 5461
下载权益
C知道特权
VIP文章
课程特权
开通VIP
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- A股上市公司MSCI ESG评级面板数据(2017-2023).zip
- Sim-EKB-Install-2024-08-08
- PHP100视频教程59关于BIWEB常见问题和结构分析最新版本
- 2212001018焦宇洁实验四1.zip
- 我的Python第一课
- 477847985552636影驰 B650M-A 2025-01-09.zip
- 一个使用 Java 结合 JavaFX 库来实现的 “大炮打蚊子” 游戏的源码
- PHP备份数据库原理和方法PHP100视频教程57最新版本
- PHP安装程序的制作原理和步骤PHP100视频教程56最新版本
- 图像识别领域YOLO目标检测算法的机制解析与应用场景
- PHP5中使用PDO连接数据库PHP100视频教程55最新版本
- ApacheRewrite伪静态配置PHP100视频教程54最新版本
- YOLO手掌数据集训练集
- c++删除链表末尾Deletion at the end 操作涉及删除链表的最后一个节点
- YOLO手掌数据集训练集2
- PHP如何防止注入及开发安全PHP100视频教程53最新版本
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功