主题文件
简介
模板文件
模板表单
通知邮件模板
- 待处理订单提醒
- 验证顾客注册邮箱
- 顾客密码重置
- 包裹信息变更提示
- 订单发货提醒[商家自送]
- 订单发货提醒[顾客自提]
- 订单发货提醒
- 订单等待付款
- 退单申请审核不通过
- 退单申请审核通过
- 订单信息变更
- 订单生效
- 订单取消
退单申请审核通过
退单申请通过审核时,发送给顾客的邮件。
使用变量
shop对象
customer对象
order对象
* current_datetime
当前时间,时间可以调用date方法进行输出。
邮件主题默认模版
退单请求通过审核-{{ shop.name }}
邮件内容默认模版
<table width="578" border="0" cellspacing="0" cellpadding="0" align="center" style="border:1px solid #d8d8d8;border-radius:3px;overflow:hidden;font-family:Microsoft YaHei,Simsun;margin-top:20px;">
<tr align="top">
<td>
<div style="width:490px;padding-left:44px;overflow:hidden;">
<h1 style="font-weight:400;font-size:24px;color:#282828;height:93px;line-height:97px;overflow:hidden;border-bottom:1px solid #e9e9e9;margin:0;font-family:Microsoft YaHei,Simsun;">退单请求通过审核!</h1>
<p style="line-height:25px;color:#444;font-size:14px;margin-top:28px;font-family:Microsoft YaHei,Simsun;">
<span style="font-weight:700;color:#444;font-family:Microsoft YaHei,Simsun;">您好,{{ customer.name }}:</span>
</p>
<p style="line-height:25px;color:#444;font-size:14px;font-family:Microsoft YaHei,Simsun;">
您的订单<strong>{{ order.order_no }}</strong>退单请求通过审核:<br/>
订单金额:¥{{ order.total_amount | money }}<br/>
退单原因:{{ order.last_refund_record.request.reason }}<br/>
操作时间:{{ order.last_refund_record.deal_at | date: '%Y-%m-%d %H:%M:%S' }}<br/>
</p>
<p style="color:#888;text-align:right;font-size:14px;margin:58px 0 40px;font-family:Microsoft YaHei,Simsun;">{{shop.name}}</p>
</div>
</td>
</tr>
</table>
<table width="578" border="0" cellspacing="0" cellpadding="0" align="center" style="overflow:hidden;font-family:Microsoft YaHei,Simsun;color:#aaa;">
<tr align="top">
<td>
<p style="width:578px;height:40px;line-height:40px;color:#aaa;margin:0 auto;font-size:12px;font-family:Microsoft YaHei,Simsun;text-align:right;">© {{ current_datetime | date: "%Y"}} <a style="color:#aaa;text-decoration:none;font-family:Arial;" href="{{ shop.url }}">{{shop.name}}</a></p>
<p style="width:578px;height:40px;color:#aaa;margin:-5px auto;font-size:12px;font-family:Microsoft YaHei,Simsun;text-align:right;">此电子邮件为系统自动发送,请勿回复</p>
</td>
</tr>
</table>