go-common/app/job/main/mcn/cmd/mail-template.toml

38 lines
1.2 KiB
TOML
Raw Normal View History

2019-04-22 10:49:16 +00:00
[MailTemplateConf]
SignTmplTitle = """[{{Now.Format "2006-01-02"}}] MCN-签约到期提醒"""
SignTmplContent = """
<html>
<body>
<table border="1">
<tr>
<td>(uid)</td>
<td></td>
</tr>
{{range .}}
<tr>
<td>{{.McnName}}{{.McnMid}}</td>
<td>{{.EndDate.Time.Format "2006-01-02"}} <a href="http://up-profit.bilibili.co/allowance/#/mcn/mcnList">upCRM-MCN</a></td>
</tr>
{{end}}
</table>
</body>
</html>
"""
PayTmplTitle = """[{{Now.Format "2006-01-02"}}] MCN-付款到期提醒"""
PayTmplContent = """
<html>
<body>
<table border=1>
<tr>
<td>(uid)</td>
<td></td>
</tr>
{{range .}}
<tr>
<td>{{.McnName}}{{.McnMid}}</td>
<td>{{.DueDate.Time.Format "2006-01-02"}} {{printf "%.2f" .GetPayValue}}<a href="http://up-profit.bilibili.co/allowance/#/mcn/mcnList">upCRM-MCN</a></td>
</tr>
{{end}}
</table>
</body>
</html>"""