<?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 - 2019 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 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_ASCII = 'us-ascii';
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';
const ENCRYPTION_STARTTLS = 'tls';
const ENCRYPTION_SMTPS = 'ssl';
const ICAL_METHOD_REQUEST = 'REQUEST';
const ICAL_METHOD_PUBLISH = 'PUBLISH';
const ICAL_METHOD_REPLY = 'REPLY';
const ICAL_METHOD_ADD = 'ADD';
const ICAL_METHOD_CANCEL = 'CANCEL';
const ICAL_METHOD_REFRESH = 'REFRESH';
const ICAL_METHOD_COUNTER = 'COUNTER';
const ICAL_METHOD_DECLINECOUNTER = 'DECLINECOUNTER';
/**
* Email priority.
* Options: null (default), 1 = High, 3 = Normal, 5 = low.
* When null, the header is not set at all.
*
* @var int|null
*/
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 = '';
/**
* Value-array of "method" in Contenttype header "text/calendar"
*
* @var string[]
*/
protected static $IcalMethods = [
self::ICAL_METHOD_REQUEST,
self::ICAL_METHOD_PUBLISH,
self::ICAL_METHOD_REPLY,
self::ICAL_METHOD_ADD,
self::ICAL_METHOD_CANCEL,
self::ICAL_METHOD_REFRESH,
self::ICAL_METHOD_COUNTER,
self::ICAL_METHOD_DECLINECOUNTER,
];
/**
* 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'.
*
* @see PHPMailer::$Helo
*
* @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/EHLO name used for the SMTP connection.
* Default is $Hostname. If $Hostname is empty, PHPMailer attempts to f
没有合适的资源?快使用搜索试试~ 我知道了~
基于JavaScript及PHP的熙鹤考务平台设计源码,兼容HTML、CSS与TypeScript
共647个文件
js:282个
php:200个
css:59个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 198 浏览量
2025-01-28
00:18:38
上传
评论
收藏 16.14MB ZIP 举报
温馨提示
该项目是一款基于JavaScript和PHP构建的熙鹤考务平台设计源码,支持HTML、CSS和TypeScript的兼容性。源码包共包含647个文件,其中JavaScript文件282个,PHP文件200个,CSS文件59个,Less和SCSS文件各14个,PNG图片10个,HTML文件10个,其他文件包括map、json、md等共计6个。该平台功能类似于问卷星,适用于各类在线考试和评估需求。
资源推荐
资源详情
资源评论
收起资源包目录
基于JavaScript及PHP的熙鹤考务平台设计源码,兼容HTML、CSS与TypeScript (647个子文件)
style-starter.css 263KB
bootstrap.min.css 227KB
layui.css 123KB
style.min.css 110KB
bootstrap.min.css 106KB
materialdesignicons.min.css 85KB
buttons.css 78KB
layui.css 78KB
animate.css 71KB
loaders.css 55KB
app.css 40KB
font-awesome.css 37KB
main.css 34KB
font-awesome.min.css 30KB
bootstrap-datepicker3.css 22KB
jquery-confirm.min.css 22KB
bootstrap-datepicker3.min.css 21KB
layuimini.css 20KB
wangEditor.css 17KB
wangEditor.min.css 15KB
select.css 15KB
layer.css 14KB
style2.css 11KB
ion.rangeSlider.min.css 11KB
zyupload-1.0.0.min.css 9KB
bootstrap-datetimepicker.css 9KB
tmwrite.css 8KB
bootstrap-datetimepicker.min.css 8KB
laydate.css 7KB
jmcv.css 7KB
ok.css 7KB
jasmine.css 6KB
styles.css 6KB
tmwrite2.css 5KB
smail23.css 5KB
bootstrap-colorpicker.css 5KB
default.css 4KB
bootstrap-colorpicker.min.css 4KB
hase.css 3KB
style.css 3KB
message.min.css 3KB
loreg.css 2KB
newdex.css 2KB
animate-load.css 2KB
tip.css 2KB
normalize.css 2KB
bomex.css 2KB
demo.css 1KB
public.css 1KB
code.css 1KB
step.css 1KB
default.css 1KB
jquery.tagsinput.min.css 903B
animate-load2.css 886B
load.css 869B
dxti.css 420B
mh.css 295B
treetable.css 294B
paintdf.css 205B
materialdesignicons.eot 286KB
fontawesome-webfont.eot 162KB
iconfont.eot 53KB
iconfont.eot 46KB
loading-0.gif 6KB
loading-2.gif 2KB
loading-1.gif 701B
.gitignore 350B
.htaccess 26B
nginx.htaccess 0B
update.html 7KB
update.html 6KB
cdk.html 3KB
cdk.html 2KB
timend.html 2KB
geturl.html 2KB
geturl.html 2KB
index.html 2KB
suspects.html 2KB
SpecRunner.html 1KB
favicon.ico 38KB
temp1.jpg 639KB
index-fop.jpg 639KB
index-fop2.jpg 482KB
Chart.js 536KB
echarts.js 427KB
layui.js 358KB
layui.js 279KB
jquery-ui.min.js 223KB
crypto-js.js 214KB
wangEditor.js 157KB
layarea.js 133KB
bootstrap-datetimepicker.js 101KB
jquery.js 94KB
jquery.min-2.js 91KB
owl.carousel.js 88KB
jquery-3.4.1.min.js 86KB
jquery.min.js 82KB
jasmine.js 69KB
select.js 69KB
jquery-3.3.1.min.js 68KB
共 647 条
- 1
- 2
- 3
- 4
- 5
- 6
- 7
资源评论
wjs2024
- 粉丝: 2578
- 资源: 5683
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- libtsan-static-4.8.5-44.el7.x64-86.rpm.tar.gz
- libudisks2-2.8.4-1.el7.x64-86.rpm.tar.gz
- libudisks2-devel-2.8.4-1.el7.x64-86.rpm.tar.gz
- libuninameslist-20091231-8.el7.x64-86.rpm.tar.gz
- libuninameslist-devel-20091231-8.el7.x64-86.rpm.tar.gz
- libunistring-0.9.3-9.el7.x64-86.rpm.tar.gz
- libunistring-devel-0.9.3-9.el7.x64-86.rpm.tar.gz
- libusal-1.1.11-25.el7.x64-86.rpm.tar.gz
- libusal-devel-1.1.11-25.el7.x64-86.rpm.tar.gz
- HTTP File Server (+WebDAV)_1.5.8_APKPure.apk
- libusbmuxd-1.0.10-5.el7.x64-86.rpm.tar.gz
- libusbmuxd-devel-1.0.10-5.el7.x64-86.rpm.tar.gz
- kid3-3.9.6-android-arm64-v8a.apk
- libusbmuxd-utils-1.0.10-5.el7.x64-86.rpm.tar.gz
- libusbx-1.0.21-1.el7.x64-86.rpm.tar.gz
- WebDAV Server - BestDAV_1.5_APKPure.apk
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功