代码拉取完成,页面将自动刷新
同步操作将从 2839543/china-hxzb-2017-1-25 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?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']);
}
}
}
}
}
?>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。