1 Star 0 Fork 2

acmr/china-hxzb-2017-1-25

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
suijiemail.php 2.07 KB
一键复制 编辑 原始数据 按行查看 历史
2839543 提交于 2017-12-28 22:42 . 2017-12-28 正常发送维护版本
<?php
require 'common.inc.php';
//遍历获取所有邮箱管理模块下的信息
$result=$db->query("SELECT * FROM {$DT_PRE}email_user where pushstatus=3 or pushstatus=4 ORDER BY itemid"); while($user2 = $db->fetch_array($result)) {
$list[]=$user2;
}
$result1 = $db->query("SELECT * FROM {$DT_PRE}weixin_user where pushemail=1 and (pushstatus=3 or pushstatus=4) ORDER BY itemid ");
while($user1 = $db->fetch_array($result1)) {
$list[]=$user1;
}
$curr_time = time();
sleep(rand(0,10));
foreach($list as $a=>$user){
$pushlist = pushlist($user,$curr_time); //获取推送的查询列表
if(!$pushlist || empty($user['filtercategory']) ){
//echo '=> nodata to push ......<br>';
continue;
}
if($user['pushemail']){
$md5 = md5(uniqid());
$DT['push_filename'] = 'html_push/push-'.$md5;
$DT['push_email_filename'] = 'html_push/push-'.$md5.'-email';
//生成html
tohtml('push');
$filename = $CFG['com_dir'] ? DT_ROOT.'/'.$DT['push_filename'].'.'.$DT['file_ext'] : DT_CACHE.'/index.inc.html';
//echo 'filename=>'.$filename.'</br>' ;
}
/*****************************
* 发送邮件
* *************************/
if($user['pushemail']){
$emails = explode(';',$user['email']);
foreach ($emails as $email){
if($email){
echo '<br>pushemail===>'.$email.'</br>';
$title=$pushlist[0]['title'];
$content = file_get_contents($DT['push_email_filename'].'.html');
$sender = 'admin@china-hxzb.com';
$resultf=$db->query("select itemid,title,password from {$DT_PRE}fsemail_38 where status=3 order by rand() limit 1");
$fsemail= $db->fetch_array($resultf);
$DT['smtp_user'] = $fsemail['title'];
$DT['smtp_pass'] = $fsemail['password'];
$rs_send_mail = send_mail($email, $title, $content, $sender);
//发送失败
if($rs_send_mail==0){
$db->query("update {$DT_PRE}fsemail_38 set status=2 where itemid=".$fsemail['itemid']);
}
}
}
}
}
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/acmr/china-hxzb-2017-1-25.git
git@gitee.com:acmr/china-hxzb-2017-1-25.git
acmr
china-hxzb-2017-1-25
china-hxzb-2017-1-25
master

搜索帮助