欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C#推送微信公众号模版消息

程序员文章站 2024-03-13 12:36:27
...

1. 需要在微信公众号申请模版消息,选择你的行业范围

2.【模版消息】—— 【模版库】

    可以搜索你想要的模版,也可以申请需要的模版。

C#推送微信公众号模版消息

3. 点击详情:添加到我的模板

C#推送微信公众号模版消息

4. 我的模板 :复制模板ID

C#推送微信公众号模版消息 

5.  C#后台代码推送消息

 public static string send_equipment(string openid, string name)
        {
            string data = "{\"touser\":\"" + openid + "\",\"template_id\":\" 模板ID\",\"url\":\"\",\"topcolor\":\"#FF0000\",\"data\":{\"first\": {\"value\":\"您好\"},\"name\":{\"value\":\"" + name + "\"},\"remark\":{\"value\":\"" + DateTime.Now + "    感谢您的支持!\"}}}";
            return ModelMessageSend(data);
        }