Function call message transmitted by the micro-engine

Function call message transmitted by the micro-engine
// $this->sendCustomNotices($openid, 'content text', 公众号ID)


$custom = array(
    'msgtype' => 'text',
    'text' => array('content' => urlencode('欢迎您再次订购!')),
    'touser' => 'oPUOlw7yvucjUrZhzG6gd8VdILa4',
);
$account_api = WeAccount::create();
$result = $account_api->sendCustomNotice($custom);
print_r($result);

Guess you like

Origin www.cnblogs.com/GetcharZp/p/11690089.html
Recommended