模板音讯仅用于公众号向用户发送重要的服务告诉,只能用于合乎其要求的服务场景中,如信用卡刷卡告诉,商品购买胜利告诉等。不反对广告等营销类音讯以及其它所有可能对用户造成骚扰的音讯。常识付费模版音讯性能应用的 easywechat 的模版音讯;
<?php
use EasyWeChat\Foundation\Application;
$app = new Application($options);
$notice = $app->notice;
API#
boolean setIndustry ($industryId1, $industryId2) 批改账号所属行业;
array getIndustry () 返回所有反对的行业列表,用于做下拉抉择行业可视化更新;
string addTemplate ($shortId) 增加模板并获取模板 ID;
collection send ($message) 发送模板音讯,返回音讯 ID;
array getPrivateTemplates () 获取所有模板列表;
array deletePrivateTemplate ($templateId) 删除指定 ID 的模板。
非链接调用办法:
$messageId = $notice->send([
'touser' => 'user-openid',
'template_id' => 'template-id',
'url' => 'xxxxx',
'data' => [//...],
]);
链式调用办法:
设置模板 ID:template /templateId/uses
设置接收者 openId: to /receiver
设置详情链接:url /link/linkTo
设置模板数据:data /with
$messageId = $notice->to($userOpenId)->uses($templateId)->andUrl($url)->data($data)->send();
// 或者
$messageId=$notice->to($userOpenId)->url($url)->template($templateId)->andData($data)
->send();// 或者
$messageId=$notice->withTo($userOpenId)->withUrl($url)->withTemplate($templateId)
->withData($data)->send();
// 或者
$messageId = $notice->to($userOpenId)->url($url)->withTemplateId($templateId)->send();
那常识付费中模版音讯如何批改呢?
第一步:当初抉择模版音讯并且在常识付费后盾增加
见文档公众号 – 模版音讯 https://doc.crmeb.com/zsff/cr…
第二步:模版音讯类中加新模版音讯编号 extend\service\WechatTemplateService
第三步:发送模版音讯
$openid : 用户 opendid
$templateId : 模版音讯编号
$url : 模版音讯点击拜访的链接
WechatTemplateService::sendTemplate($openid, $templateId,
[
// 上面的参数以模版音讯的具体内容为主;如下图红框的内容
'first' => '.....',
'keyword1' => '','keyword2'=>'',
'remark' => '备注'
], $url);
这样模版音讯就胜利了。
源码附件曾经打包好上传到百度云了,大家自行下载即可~
链接: https://pan.baidu.com/s/14G-b…
提取码: yu27
百度云链接不稳固,随时可能会生效,大家放松保留哈。
如果百度云链接生效了的话,请留言通知我,我看到后会及时更新~
开源地址
码云地址:https://gitee.com/ZhongBangKe…
开源不易,Star 以表尊重,感兴趣的敌人欢送 Star,提交 PR,一起保护开源我的项目,造福更多人!