order_no = $order_no; $this->smsConfig = $smsConfig; } // 定义直接使用内容发送平台的内容 public function getContent(GatewayInterface $gateway = null) { return sprintf('您有一条新的退款订单,订单号:', $this->order_no . ',请登录商城后台查看'); } // 定义使用模板发送方式平台所需要的模板 ID public function getTemplate(GatewayInterface $gateway = null) { return $this->smsConfig['template_id']; } // 模板参数 public function getData(GatewayInterface $gateway = null) { return [ $this->smsConfig['template_variable'] => $this->order_no ]; } }