...
|
...
|
@@ -126,8 +126,14 @@ class Job extends Base { |
|
|
$where = dbWhere($whereArray);
|
|
|
|
|
|
$lists = db()->all(sendJobStatusSql::detail($where, $page, $limit, $isExport));
|
|
|
|
|
|
$ret = db()->first(sendJobsSql::find($jobId));
|
|
|
if($ret){
|
|
|
$ret['maildata'] = json_decode($ret['maildata'],true);
|
|
|
}
|
|
|
foreach ($lists as &$list) {
|
|
|
if ($list['to'] == 'all'){
|
|
|
$list['to'] = implode(',',array_column($ret['maildata']['tos'],'email'));
|
|
|
}
|
|
|
$list['error'] = '';
|
|
|
}
|
|
|
|
...
|
...
|
|