diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-03-26 00:37:41 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-03-26 00:37:41 +0000 |
| commit | e0dfb55c5457aec489fc084c4567e791b4c65eb1 (patch) | |
| tree | 68543a65d88f5afb3a0202925804103daa91bc6f /lib/mail/templates/admin-created.hbs | |
3/25 까지의 대표님 작업사항
Diffstat (limited to 'lib/mail/templates/admin-created.hbs')
| -rw-r--r-- | lib/mail/templates/admin-created.hbs | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/lib/mail/templates/admin-created.hbs b/lib/mail/templates/admin-created.hbs new file mode 100644 index 00000000..7be7f15d --- /dev/null +++ b/lib/mail/templates/admin-created.hbs @@ -0,0 +1,78 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8" /> + <title>{{t "adminCreated.title" lng=language}}</title> + <style> + /* 간단한 스타일 예시 */ + body { + font-family: Arial, sans-serif; + margin: 0; + padding: 16px; + background-color: #f5f5f5; + } + .container { + max-width: 600px; + margin: 0 auto; + background-color: #ffffff; + padding: 24px; + border-radius: 8px; + } + h1 { + font-size: 20px; + margin-bottom: 16px; + } + p { + font-size: 14px; + line-height: 1.6; + } + .btn { + display: inline-block; + margin-top: 16px; + padding: 12px 24px; + background-color: #1D4ED8; + color: #ffffff !important; + text-decoration: none; + border-radius: 4px; + } + .footer { + margin-top: 24px; + font-size: 12px; + color: #888888; + } + </style> + </head> + <body> + <div class="container"> + <!-- 상단 로고/타이틀 영역 --> + <div style="text-align: center;"> + <!-- 필요 시 로고 이미지 --> + <!-- <img src="https://your-logo-url.com/logo.png" alt="EVCP" width="120" /> --> + </div> + + <h1>{{t "adminCreated.title" lng=language}}</h1> + + <p> + {{t "adminCreated.greeting" lng=language}}, <strong>{{name}}</strong>. + </p> + + <p> + {{t "adminCreated.body1" lng=language}} + </p> + + <p> + <a class="btn" href="{{loginUrl}}" target="_blank">{{t "adminCreated.loginCTA" lng=language}}</a> + </p> + + <p> + {{t "adminCreated.supportMsg" lng=language}} + </p> + + <div class="footer"> + <p> + {{t "adminCreated.footerDisclaimer" lng=language}} + </p> + </div> + </div> + </body> +</html>
\ No newline at end of file |
