...
|
...
|
@@ -30,9 +30,12 @@ class HotMail { |
|
|
private function start(){
|
|
|
_echo('启动预热邮件处理 '.getmypid());
|
|
|
|
|
|
$this->shopkHotEmail = $this->getHotEmail();
|
|
|
$fob = $this->getFobHotEmail();
|
|
|
|
|
|
// 把黑格自己的也算进去
|
|
|
$this->shopkHotEmail = array_merge($this->getHotEmail(),$fob);
|
|
|
if($this->shopkHotEmail){
|
|
|
array_map([$this,'moveMail'],$this->getFobHotEmail());
|
|
|
array_map([$this,'moveMail'],$fob);
|
|
|
}
|
|
|
|
|
|
}
|
...
|
...
|
@@ -183,6 +186,7 @@ class HotMail { |
|
|
}
|
|
|
}
|
|
|
logs('fob 获取预热邮箱错误:'.print_r($data,1),'get_hot_fob_email.error.log')->write();
|
|
|
return [];
|
|
|
}
|
|
|
|
|
|
|
...
|
...
|
|