View Source WeChat.Template (wechat v0.16.0)

消息管理 - 模板消息

官方文档

Summary

Types

@type description() :: String.t()
@type industry_id() :: integer()
@type pic_url() :: String.t()
@type template_id() :: String.t()
@type title() :: String.t()
@type url() :: String.t()

Functions

Link to this function

api_add_template(client, template_id_short)

View Source
@spec api_add_template(WeChat.client(), template_id_short :: String.t()) ::
  WeChat.response()

获得模板ID - 官方文档

Link to this function

api_set_industry(client, industry_id1, industry_id2)

View Source
@spec api_set_industry(WeChat.client(), industry_id(), industry_id()) ::
  WeChat.response()

设置所属行业 - 官方文档

每月可修改行业1次,帐号仅可使用所属行业中相关的模板

Link to this function

del_private_template(client, template_id)

View Source
@spec del_private_template(WeChat.client(), template_id()) :: WeChat.response()

删除模板 - 官方文档

Link to this function

get_all_private_template(client)

View Source
@spec get_all_private_template(WeChat.client()) :: WeChat.response()

获取模板列表 - 官方文档

@spec get_industry(WeChat.client()) :: WeChat.response()

获取设置的行业信息 - 官方文档

Link to this function

send_template_message(client, body)

View Source
@spec send_template_message(WeChat.client(), body :: map()) :: WeChat.response()

发送模板消息 - 官方文档

Link to this function

send_template_message(client, openid, template_id, data)

View Source
@spec send_template_message(
  WeChat.client(),
  WeChat.openid(),
  template_id(),
  data :: map()
) ::
  WeChat.response()

发送模板消息 - 官方文档