更新到正式版1.0
This commit is contained in:
@@ -1,64 +1,64 @@
|
||||
<?php
|
||||
|
||||
if(!defined('IN_OAOOA')) {
|
||||
exit('Access Denied');
|
||||
}
|
||||
|
||||
header('Content-Type: text/javascript');
|
||||
|
||||
$pernum = 1;
|
||||
|
||||
dsetcookie('sendmail', '1', 300);
|
||||
$lockfile = DZZ_ROOT.'./data/sendmail.lock';
|
||||
@$filemtime = filemtime($lockfile);
|
||||
|
||||
if($_G['timestamp'] - $filemtime < 5) exit();
|
||||
|
||||
touch($lockfile);
|
||||
|
||||
@set_time_limit(0);
|
||||
|
||||
$list = $sublist = $cids = $touids = array();
|
||||
foreach(C::t('mailcron')->fetch_all_by_sendtime($_G['timestamp'], 0, $pernum) as $value) {
|
||||
if($value['touid']) $touids[$value['touid']] = $value['touid'];
|
||||
$cids[] = $value['cid'];
|
||||
$list[$value['cid']] = $value;
|
||||
}
|
||||
|
||||
if(empty($cids)) exit();
|
||||
|
||||
foreach(C::t('mailqueue')->fetch_all_by_cid($cids) as $value) {
|
||||
$sublist[$value['cid']][] = $value;
|
||||
}
|
||||
|
||||
if($touids) {
|
||||
C::t('user_status')->update($touids, array('lastsendmail' => TIMESTAMP), 'UNBUFFERED');
|
||||
}
|
||||
|
||||
C::t('mailcron')->delete($cids);
|
||||
C::t('mailqueue')->delete_by_cid($cids);
|
||||
|
||||
require_once libfile('function/mail');
|
||||
|
||||
foreach ($list as $cid => $value) {
|
||||
$mlist = $sublist[$cid];
|
||||
if($value['email'] && $mlist) {
|
||||
$subject = getstr($mlist[0]['subject'], 80, 0, 0, 0, -1);
|
||||
$message = '';
|
||||
if(count($mlist) == 1) {
|
||||
$message = '<br>'.$mlist[0]['message'];
|
||||
} else {
|
||||
foreach ($mlist as $subvalue) {
|
||||
if($subvalue['message']) {
|
||||
$message .= "<br><strong>$subvalue[subject]</strong><br>$subvalue[message]<br>";
|
||||
} else {
|
||||
$message .= $subvalue['subject'].'<br>';
|
||||
}
|
||||
}
|
||||
}
|
||||
if(!sendmail($value['email'], $subject, $message)) {
|
||||
runlog('sendmail', "$value[email] sendmail failed.");
|
||||
}
|
||||
}
|
||||
}
|
||||
<?php
|
||||
|
||||
if(!defined('IN_OAOOA')) {
|
||||
exit('Access Denied');
|
||||
}
|
||||
|
||||
header('Content-Type: text/javascript');
|
||||
|
||||
$pernum = 1;
|
||||
|
||||
dsetcookie('sendmail', '1', 300);
|
||||
$lockfile = DZZ_ROOT.'./data/sendmail.lock';
|
||||
@$filemtime = filemtime($lockfile);
|
||||
|
||||
if($_G['timestamp'] - $filemtime < 5) exit();
|
||||
|
||||
touch($lockfile);
|
||||
|
||||
@set_time_limit(0);
|
||||
|
||||
$list = $sublist = $cids = $touids = array();
|
||||
foreach(C::t('mailcron')->fetch_all_by_sendtime($_G['timestamp'], 0, $pernum) as $value) {
|
||||
if($value['touid']) $touids[$value['touid']] = $value['touid'];
|
||||
$cids[] = $value['cid'];
|
||||
$list[$value['cid']] = $value;
|
||||
}
|
||||
|
||||
if(empty($cids)) exit();
|
||||
|
||||
foreach(C::t('mailqueue')->fetch_all_by_cid($cids) as $value) {
|
||||
$sublist[$value['cid']][] = $value;
|
||||
}
|
||||
|
||||
if($touids) {
|
||||
C::t('user_status')->update($touids, array('lastsendmail' => TIMESTAMP), 'UNBUFFERED');
|
||||
}
|
||||
|
||||
C::t('mailcron')->delete($cids);
|
||||
C::t('mailqueue')->delete_by_cid($cids);
|
||||
|
||||
require_once libfile('function/mail');
|
||||
|
||||
foreach ($list as $cid => $value) {
|
||||
$mlist = $sublist[$cid];
|
||||
if($value['email'] && $mlist) {
|
||||
$subject = getstr($mlist[0]['subject'], 80, 0, 0, 0, -1);
|
||||
$message = '';
|
||||
if(count($mlist) == 1) {
|
||||
$message = '<br>'.$mlist[0]['message'];
|
||||
} else {
|
||||
foreach ($mlist as $subvalue) {
|
||||
if($subvalue['message']) {
|
||||
$message .= "<br><strong>$subvalue[subject]</strong><br>$subvalue[message]<br>";
|
||||
} else {
|
||||
$message .= $subvalue['subject'].'<br>';
|
||||
}
|
||||
}
|
||||
}
|
||||
if(!sendmail($value['email'], $subject, $message)) {
|
||||
runlog('sendmail', "$value[email] sendmail failed.");
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user