|
@@ -8,7 +8,9 @@ class Aliyunsms
|
|
|
{
|
|
|
private $_params = [];
|
|
|
protected $error = '';
|
|
|
+ protected $event = null;
|
|
|
protected $config = [];
|
|
|
+ protected $temp_params = [];
|
|
|
protected static $instance = null;
|
|
|
protected $statusStr = array(
|
|
|
"0" => "短信发送成功",
|
|
@@ -68,6 +70,17 @@ class Aliyunsms
|
|
|
$params_post = [
|
|
|
'code' => $params['msg']
|
|
|
];
|
|
|
+ $params_post=array_merge($params_post,$this->temp_params);
|
|
|
+
|
|
|
+ $tempCode=$this->config['templateCode'];
|
|
|
+ switch ($this->event){
|
|
|
+ case 'ordered':
|
|
|
+ $tempCode=$this->config['ordered_code'];
|
|
|
+ break;
|
|
|
+ case 'dispatch':
|
|
|
+ $tempCode=$this->config['dispatch_code'];
|
|
|
+ break;
|
|
|
+ }
|
|
|
|
|
|
|
|
|
$result = AlibabaCloud::rpc()
|
|
@@ -82,7 +95,7 @@ class Aliyunsms
|
|
|
'RegionId' => $this->config['regionId'],
|
|
|
'PhoneNumbers' => $this->_params['mobile'],
|
|
|
'SignName' => $this->config['signName'],
|
|
|
- 'TemplateCode' => $this->config['templateCode'],
|
|
|
+ 'TemplateCode' => $tempCode,
|
|
|
'TemplateParam' => json_encode($params_post),
|
|
|
],
|
|
|
])
|
|
@@ -133,4 +146,12 @@ class Aliyunsms
|
|
|
$this->_params['msg'] = $msg;
|
|
|
return $this;
|
|
|
}
|
|
|
+ public function params($params){
|
|
|
+ $this->temp_params = $params?:[];
|
|
|
+ return $this;
|
|
|
+ }
|
|
|
+ public function event($e){
|
|
|
+ $this->event = $e;
|
|
|
+ return $this;
|
|
|
+ }
|
|
|
}
|