This commit is contained in:
wangjinlei
2022-01-09 08:57:19 +08:00
parent 49f170a778
commit cff82c6c25
7 changed files with 224 additions and 5 deletions

View File

@@ -26,6 +26,12 @@ class mail {
// }
}
public function puchAndFJ(Job $job, $data){
$res = $this->sendFJ($data);
$job->delete();
}
public function propa(Job $job, $data){
$res = $this->push($data);
$job->delete();
@@ -54,5 +60,10 @@ class mail {
}
}
public function sendFJ($data){
sendEmail_data($data['email'],$data['title'],$data['fromname'],$data['content'],$data['temail'],$data['tpassword'],$data["fj"]);
}
}