You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
424 B

<?php
namespace tencent\wechat\mpweixin;
use EasyWeChat\Factory;
class Message extends Base
{
/**
* 订阅消息-发送订阅消息
* @param array $data 模板消息数组
* @date 2022-02-22
*/
public function sendTemplateMessage($data)
{
$app = Factory::miniProgram($this->mpWeixinConfig);
$result = $app->subscribe_message->send($data);
return $result;
}
}