作者 邓超

log

... ... @@ -72,10 +72,11 @@ class SendJob {
continue;
}
}else{
$this->go_($list);
}
$this->go_($list);
}
}else{
// 休眠30秒
... ... @@ -181,6 +182,8 @@ class SendJob {
}
else{
// 是否已发送过了
if(!db()->count(\Model\sendJobStatusSql::count($data['id'],'all'))){
$result = \Lib\Mail\MailFun::sendEmail($data['maildata'],$email);
// 更新状态
db()->update(\Model\sendJobsSql::$table,[
... ... @@ -195,6 +198,11 @@ class SendJob {
'status' => $result[0] ? 1 : 0,
'error' => $result[0] ? $result[1] : ''
]);
}else{
_echo('发送过了 '.$data['id']);
}
}
// 协程结束后
... ...