callmez\wechat\sdk\Wechat::sendCustomMessage PHP Method

sendCustomMessage() protected method

发送客服消息
protected sendCustomMessage ( array $data ) : boolean
$data array
return boolean
    protected function sendCustomMessage(array $data)
    {
        $result = $this->httpRaw(self::WECHAT_CUSTOM_MESSAGE_SEND_URL . 'access_token=' . $this->getAccessToken(), $data);
        return isset($result['errmsg']) && $result['errmsg'] == 'ok';
    }
Wechat