作者 刘朕
1 个管道 的构建 通过 耗费 1 秒

合并分支 'Branch_liuzhen' 到 'master'

Branch liuzhen



查看合并请求 !187
... ... @@ -56,7 +56,7 @@ class Sms extends Api
// }
$ret = Smslib::send($mobile, null, $event);
if ($ret) {
$this->success(__('发送成功'),['code'=>$ret]);
$this->success(__('发送成功'));
} else {
$this->error(__('发送失败,请检查短信配置是否正确'));
}
... ...
... ... @@ -61,7 +61,7 @@ class Sms
'password' => $password, //密码
'tKey' => $tKey, //tKey
'signature' => '【小区焦点】',
'mobile' => config('site.customer'),
'mobile' => $mobile,
'content' => '提醒您,您的验证码是:' .$code.',十分钟之内有效,请勿向他人泄漏您的验证码',
);
$result = httpPost($sms_config['url'], $date);
... ...