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

sendNews() public method

发送图文客服消息
public sendNews ( $openId, array $articles ) : boolean
$openId 关注者openID
$articles array 图文信息内容部分 ~~~ $articles = [ 'title' => 'Happy Day', 'description' => 'Is Really A Happy Day', 'url' => 'URL', 'picurl' => 'PIC_URL' ] ~~~
return boolean
    public function sendNews($openId, array $articles)
    {
        return $this->sendCustomMessage(['touser' => $openId, 'msgtype' => 'news', 'news' => ['articles' => $articles]]);
    }
Wechat