summaryrefslogtreecommitdiff
path: root/lib/mail/templates/investigation-request.hbs
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-06-26 02:58:20 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-06-26 02:58:20 +0000
commit3bf1952c1dad9d479bb8b22031b06a7434d37c37 (patch)
treec212c5875f55617baca8bc0a6d8314628d74286f /lib/mail/templates/investigation-request.hbs
parent2a60945bf9eb50cd5cb28d7d3782290f92879361 (diff)
(최겸) 공통 > 이메일 템플릿 관리 개발
Diffstat (limited to 'lib/mail/templates/investigation-request.hbs')
-rw-r--r--lib/mail/templates/investigation-request.hbs103
1 files changed, 72 insertions, 31 deletions
diff --git a/lib/mail/templates/investigation-request.hbs b/lib/mail/templates/investigation-request.hbs
index a69091a5..fb8949b6 100644
--- a/lib/mail/templates/investigation-request.hbs
+++ b/lib/mail/templates/investigation-request.hbs
@@ -1,31 +1,72 @@
-{{> header logoUrl=logoUrl }}
-
-<h2 style="font-size:28px; margin-bottom:16px;"> 협력업체 실사 요청</h2>
-
-<p style="font-size:16px;">안녕하세요,</p>
-
-<p style="font-size:16px;">협력업체 실사 요청이 접수되었습니다.</p>
-
-<div style="background-color:#F1F5F9; padding:16px; border-radius:4px; margin:16px 0;">
- <p style="font-size:16px; margin:0 0 8px 0;"><strong>협력업체 ID:</strong></p>
- <ul style="margin:0; padding-left:20px;">
- {{#each vendorIds}}
- <li style="font-size:16px; margin-bottom:4px;">{{this}}</li>
- {{/each}}
- </ul>
-
- {{#if notes}}
- <p style="font-size:16px; margin:16px 0 0 0;"><strong>메모:</strong></p>
- <p style="font-size:16px; margin:8px 0 0 0;">{{notes}}</p>
- {{/if}}
-</div>
-
-<p style="text-align: center; margin: 25px 0;">
- <a href="{{portalUrl}}" target="_blank" style="display:inline-block; background-color:#163CC4; color:#ffffff; padding:10px 20px; text-decoration:none; border-radius:4px;">벤더 포털 바로가기</a>
-</p>
-
-<p style="font-size:16px;">문의사항이 있으시면 시스템 관리자에게 연락해 주세요.</p>
-
-<p style="font-size:16px;">감사합니다.<br />eVCP 팀</p>
-
-{{> footer logoUrl=logoUrl companyName=companyName year=year }} \ No newline at end of file
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>eVCP 메일</title>
+ <style>
+ body {
+ margin: 0 !important;
+ padding: 20px !important;
+ background-color: #f4f4f4;
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ }
+ .email-container {
+ max-width: 600px;
+ margin: 0 auto;
+ background-color: #ffffff;
+ padding: 20px;
+ border-radius: 8px;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ }
+ </style>
+</head>
+<body>
+ <div class="email-container">
+<table width="100%" cellpadding="0" cellspacing="0" style="margin-bottom:24px; border-bottom:1px solid #163CC4; padding-bottom:16px;">
+ <tr>
+ <td align="center">
+ <span style="display: block; text-align: left; color: #163CC4; font-weight: bold; font-size: 32px;">eVCP</span>
+ </td>
+ </tr>
+</table>
+
+<h2 style="font-size:28px; margin-bottom:16px;"> 협력업체 실사 요청</h2>
+
+<p style="font-size:16px;">안녕하세요,</p>
+
+<p style="font-size:16px;">협력업체 실사 요청이 접수되었습니다.</p>
+
+<div style="background-color:#F1F5F9; padding:16px; border-radius:4px; margin:16px 0;">
+ <p style="font-size:16px; margin:0 0 8px 0;"><strong>협력업체 ID:</strong></p>
+ <ul style="margin:0; padding-left:20px;">
+ {{#each vendorIds}}
+ <li style="font-size:16px; margin-bottom:4px;">{{this}}</li>
+ {{/each}}
+ </ul>
+
+ {{#if notes}}
+ <p style="font-size:16px; margin:16px 0 0 0;"><strong>메모:</strong></p>
+ <p style="font-size:16px; margin:8px 0 0 0;">{{notes}}</p>
+ {{/if}}
+</div>
+
+<p style="text-align: center; margin: 25px 0;">
+ <a href="{{portalUrl}}" target="_blank" style="display:inline-block; background-color:#163CC4; color:#ffffff; padding:10px 20px; text-decoration:none; border-radius:4px;">벤더 포털 바로가기</a>
+</p>
+
+<p style="font-size:16px;">문의사항이 있으시면 시스템 관리자에게 연락해 주세요.</p>
+
+<p style="font-size:16px;">감사합니다.<br />eVCP 팀</p>
+
+<table width="100%" cellpadding="0" cellspacing="0" style="margin-top:32px; border-top:1px solid #e5e7eb; padding-top:16px;">
+ <tr>
+ <td align="center">
+ <p style="font-size:16px; color:#6b7280; margin:4px 0;">© {{currentYear}} EVCP. {{t "email.vendor.invitation.copyright"}}</p>
+ <p style="font-size:16px; color:#6b7280; margin:4px 0;">{{t "email.vendor.invitation.no_reply"}}</p>
+ </td>
+ </tr>
+</table>
+ </div>
+</body>
+</html> \ No newline at end of file