- Tigshop标准版
- 后台adminapi
- authority --- 权限组
- merchant ----商户
- common --- 公共方法组
- content --- 文章组
- decorate --- 装修组
- promotion --- 营销组
- setting --- 配置组
- album --- 内置相册
- app_version --- APP版本管理
- config --- 设置项管理
- area_code --- 区号维护
- friend_links --- 友情链接
- gallery --- 相册
- gallery_pic --- 相册图片
- logistics_company --- 物流公司
- mail_templates --- 邮件模板设置
- message_type --- 消息设置
- region --- 地区管理
- licensed --- 授权管理
- salesman --- 分销
- user --- 会员模块
- finance --- 财务组
- product --- 商品
- product_attributes --- 商品属性管理(待定)
- product_attributes_tpl --- 商品属性模板管理
- product_inventory_log --- 商品库存日志管理
- product_batch --- 商品批量处理管理
- product_services --- 商品服务
- e_card_group --- 电子卡券组
- e_card --- 电子卡券
- product_group ---商品分组
- shop_product_category ---店铺商品分类 (待定)
- price_inquiry --- 询价管理
- brand --- 品牌管理
- category --- 商品分类管理
- comment --- 商品评论管理
- product --- 商品管理
- panel --- 统计面板组
- lang --- 多语言
- login --- 登录组
- order---订单组
- msg --- 消息管理组
- 前台api
- search --- 搜索
- merchant --- 商户
- article --- 文章
- salesman --- 分销
- product --- 商品
- order --- 订单
- category --- 商品分类
- home --- 首页
- cart --- 购物车
- user --- 会员中心
- common --- 公共方法
- shop --- 店铺
- IM
- 安装
获取所有的邮件模板
开发中
GET
/adminapi/setting/mail_templates/get_all_mail_templates
请求参数
无
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/adminapi/setting/mail_templates/get_all_mail_templates'
返回响应
🟢200成功
application/json
Body
object {0}
示例
{
"code": 0,
"msg": "ok",
"data": {
"item": [
{
"template_name": "发送密码模板 [send_password]",
"template_id": 1,
"template_code": "send_password",
"is_html": 1,
"template_subject": "密码找回",
"template_content": "<p>{$user_name}您好!<br><br>您已经进行了密码重置的操作,请点击以下链接(或者复制到您的浏览器):<br><br><a href=\"{$reset_email}\" target=\"_blank\">{$reset_email}</a><br><br>以确认您的新密码重置操作!<br><br>{$shop_name}<br>{$send_date}</p>",
"last_modify": 1676273947,
"last_send": 0,
"type": "template"
}
],
"errcode": 0,
"message": ""
}
}
🟠404失败