作者 何书鹏
1 个管道 的构建 通过 耗费 1 秒

客服留言通知

... ... @@ -467,6 +467,16 @@ class Goods extends Api
'mobile' => $param['mobile'],
];
$result = $msg_model->add($add);
// 发送模板消息
$send_data = array(
"first" => '您好,您有一个未处理的客服留言!',
"keyword1" => $param['content'],
"keyword2" => $param['mobile'],
"keyword3" => date('Y年m月d日 H:i',time()),
"remark" => ['请尽快处理!','#FF0000'],
);
$url = $this->request->root(true).'/admininfo.php/index/login';
(new \app\index\controller\Ajax)->wxsendmessage(config('option.examine_openid'),$send_data,config('option.template')['examine'],$url);
Db::commit();
} catch (PDOException $e) {
Db::rollback();
... ...