This commit is contained in:
王金磊
2023-05-04 13:41:50 +08:00
parent 883c9a870c
commit 177d1c939f
8 changed files with 398 additions and 20 deletions

View File

@@ -357,6 +357,22 @@ class Auto extends Base
return jsonSuccess($re);
}
/**
* 推送邮件到作者当文章推送到官网时
*/
public function pushEmailToAuthor(){
$data = $this->request->post();
$rule = new Validate([
''=>'require'
]);
if(!$rule->check($data)){
return jsonError($rule->getError());
}
}
/**
* 获取动态gpt内容
*/