hanson/wechat-notice

There is no license information available for the latest version (v1.0.0) of this package.

Wechat notice

v1.0.0 2017-02-16 08:24 UTC

This package is not auto-updated.

Last update: 2024-04-13 17:13:53 UTC


README

wechat-notcie 是基于 laravel 和 EasyWechat 开发的微信消息模板通知功能

安装

composer require hanson/wechat-notice

添加 Hanson\WechatNotice\NoticeServiceProvider::classapp.phpproviders

使用

config

当不做任何设置时,Notice会自动读取 config('services.wechat') 的配置

\WechatNotice::send($openId, $templateId, [
    'first' => '系统异常',
    'keyword1' => '',
    'keyword2' => '',
    'keyword3' => '',
    'remark' => '请及时处理'
]);

已存在实例

$wechat = new Application([
    'app_id'  => $appId,
    'secret'  => $secret,
]);

\WechatNotice::setWechat($wechat)->send($openId, $templateId, [
    'first' => '系统异常',
    'keyword1' => '',
    'keyword2' => '',
    'keyword3' => '',
    'remark' => '请及时处理'
], null, '#af0505');

直接设置配置

\WechatNotice::setConfig([
    'app_id'  => $appId,
    'secret'  => $secret,
])->send($openId, $templateId, [
    'first' => '系统异常',
    'keyword1' => '',
    'keyword2' => '',
    'keyword3' => '',
    'remark' => '请及时处理'
]);

发送给多个用户

\WechatNotice::send([$openId, $openId2, $openId3, ...], $templateId, [
    'first' => '系统异常',
    'keyword1' => '',
    'keyword2' => '',
    'keyword3' => '',
    'remark' => '请及时处理'
]);