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

sendText() public method

发送文本客服信息
public sendText ( $openId, $content ) : boolean
$openId 关注者openID
$content 文本消息内容
return boolean
    public function sendText($openId, $content)
    {
        return $this->sendCustomMessage(['touser' => $openId, 'msgtype' => 'text', 'text' => ['content' => $content]]);
    }
Wechat