feat(mailer): brand account access emails
giteabot / giteabot (push) Canceled after 0s
giteabot backport / giteabot (push) Canceled after 0s
release-nightly-snapcraft / build-and-publish (push) Canceled after 0s
release-nightly / nightly-binary (push) Canceled after 0s
release-nightly / nightly-container (push) Canceled after 0s

Assisted-by: Codex:GPT-5
This commit is contained in:
2026-08-22 15:51:48 +08:00
parent d10a24cb04
commit bc551009df
4 changed files with 142 additions and 19 deletions
+45 -9
View File
@@ -1,19 +1,55 @@
海南荣刻科技有限公司|账号信息
---
<!DOCTYPE html>
<html>
<html lang="zh-CN">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta charset="utf-8">
<meta name="format-detection" content="telephone=no,date=no,address=no,email=no,url=no">
<title>{{.locale.Tr "mail.register_notify.title" (.DisplayName|DotEscape) AppName}}</title>
<title>账号信息</title>
</head>
{{$set_pwd_url := printf "%suser/forgot_password" AppUrl}}
{{if .Code}}{{$set_pwd_url = printf "%suser/recover_account?code=%s" AppUrl (QueryEscape .Code)}}{{end}}
<body>
<p>{{.locale.Tr "mail.hi_user_x" (.DisplayName|DotEscape)}}</p><br>
<p>{{.locale.Tr "mail.register_notify.text_1" AppName}}</p><br>
<p>{{.locale.Tr "mail.register_notify.text_2" .Username}}</p><p><a href="{{AppUrl}}user/login">{{AppUrl}}user/login</a></p><br>
<p>{{.locale.Tr "mail.register_notify.text_3" $set_pwd_url}}</p><br>
<body style="margin:0;padding:24px;background:#f5f7fa;color:#1f2937;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI','Microsoft YaHei',Arial,sans-serif;line-height:1.7;">
<div style="max-width:620px;margin:0 auto;background:#ffffff;border:1px solid #e5e7eb;border-radius:10px;padding:32px;">
<h2 style="margin:0 0 24px;color:#111827;font-size:22px;">账号信息</h2>
<p>© <a href="{{AppUrl}}">{{AppName}}</a></p>
<p>{{.DisplayName | DotEscape}},您好:</p>
<p>海南荣刻科技有限公司已为您开通代码协作平台账号。</p>
<p>
用户名:<strong>{{.Username}}</strong>
</p>
{{if .Code}}
<p>请在 {{.ResetPwdCodeLives}} 内点击下面的链接设置登录密码:</p>
{{else}}
<p>请点击下面的链接设置登录密码:</p>
{{end}}
<p>
<a href="{{$set_pwd_url}}" style="display:inline-block;padding:10px 18px;border-radius:6px;background:#2563eb;color:#ffffff;text-decoration:none;">完成账号设置</a>
</p>
<p style="word-break:break-all;color:#4b5563;font-size:13px;">{{$set_pwd_url}}</p>
<p>完成账号设置后,可通过以下地址访问平台:</p>
<p>
<a href="{{AppUrl}}user/login">{{AppUrl}}user/login</a>
</p>
<p style="margin-top:28px;color:#6b7280;font-size:13px;">
如果您并未预期收到此邮件,请联系管理员确认。<br>
本邮件由系统自动发送,请勿直接回复。
</p>
<p style="margin:24px 0 0;color:#374151;">
海南荣刻科技有限公司<br>
代码协作平台<br>
{{AppUrl}}
</p>
</div>
</body>
</html>
+30 -8
View File
@@ -1,17 +1,39 @@
海南荣刻科技有限公司|账号访问链接
---
<!DOCTYPE html>
<html>
<html lang="zh-CN">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta charset="utf-8">
<meta name="format-detection" content="telephone=no,date=no,address=no,email=no,url=no">
<title>{{.locale.Tr "mail.reset_password.title" (.DisplayName|DotEscape)}}</title>
<title>账号访问链接</title>
</head>
{{$recover_url := printf "%suser/recover_account?code=%s" AppUrl (QueryEscape .Code)}}
<body>
<p>{{.locale.Tr "mail.hi_user_x" (.DisplayName|DotEscape)}}</p><br>
<p>{{.locale.Tr "mail.reset_password.text" .ResetPwdCodeLives}}</p><p><a href="{{$recover_url}}">{{$recover_url}}</a></p><br>
<p>{{.locale.Tr "mail.link_not_working_do_paste"}}</p>
<body style="margin:0;padding:24px;background:#f5f7fa;color:#1f2937;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI','Microsoft YaHei',Arial,sans-serif;line-height:1.7;">
<div style="max-width:620px;margin:0 auto;background:#ffffff;border:1px solid #e5e7eb;border-radius:10px;padding:32px;">
<h2 style="margin:0 0 24px;color:#111827;font-size:22px;">账号访问链接</h2>
<p>© <a href="{{AppUrl}}">{{AppName}}</a></p>
<p>{{.DisplayName | DotEscape}},您好:</p>
<p>我们收到了一次账号访问设置请求。</p>
<p>请在 {{.ResetPwdCodeLives}} 内点击下面的链接完成设置:</p>
<p>
<a href="{{$recover_url}}" style="display:inline-block;padding:10px 18px;border-radius:6px;background:#2563eb;color:#ffffff;text-decoration:none;">继续操作</a>
</p>
<p style="word-break:break-all;color:#4b5563;font-size:13px;">{{$recover_url}}</p>
<p style="margin-top:24px;color:#6b7280;font-size:13px;">
如果您没有发起本次请求,可以忽略此邮件。为保障账号安全,请勿将此链接转发给他人。
</p>
<p style="margin:24px 0 0;color:#374151;">
海南荣刻科技有限公司<br>
代码协作平台<br>
{{AppUrl}}
</p>
</div>
</body>
</html>