diff options
Diffstat (limited to 'lib/mail/templates/vendor-project-pq-status.hbs')
| -rw-r--r-- | lib/mail/templates/vendor-project-pq-status.hbs | 125 |
1 files changed, 83 insertions, 42 deletions
diff --git a/lib/mail/templates/vendor-project-pq-status.hbs b/lib/mail/templates/vendor-project-pq-status.hbs index 5b9efc3a..20c36fa4 100644 --- a/lib/mail/templates/vendor-project-pq-status.hbs +++ b/lib/mail/templates/vendor-project-pq-status.hbs @@ -1,42 +1,83 @@ -{{> header logoUrl=logoUrl }} - -<h1 style="text-align:center; font-size:28px; margin-bottom:20px;"> 프로젝트 PQ 상태 업데이트</h1> - -<p style="font-size:16px;">안녕하세요 {{name}}님,</p> - -<p style="font-size:16px;"> - <strong>{{projectName}}</strong>에 대한 귀사의 상태가 <strong>{{status}}</strong>로 업데이트되었습니다. -</p> - -{{#if hasRejectionReason}} -<p style="font-size:16px; padding:15px; background-color:#f8f8f8; border-left:4px solid #e74c3c;"> - <strong>거절 사유:</strong><br/> - {{rejectionReason}} -</p> -{{/if}} - -{{#if approvalDate}} -<p style="font-size:16px;"> - <strong>승인 날짜:</strong> {{approvalDate}} -</p> -{{/if}} - -{{#if rejectionDate}} -<p style="font-size:16px;"> - <strong>거절 날짜:</strong> {{rejectionDate}} -</p> -{{/if}} - -<p style="font-size:16px;"> - 자세한 내용을 확인하고 추가 조치를 취하시려면 로그인해 주세요: - <br /> - <a href="{{loginUrl}}" target="_blank" style="color:#163CC4; text-decoration:underline;"> - 포털로 이동 - </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>
+
+<h1 style="text-align:center; font-size:28px; margin-bottom:20px;"> 프로젝트 PQ 상태 업데이트</h1>
+
+<p style="font-size:16px;">안녕하세요 {{name}}님,</p>
+
+<p style="font-size:16px;">
+ <strong>{{projectName}}</strong>에 대한 귀사의 상태가 <strong>{{status}}</strong>로 업데이트되었습니다.
+</p>
+
+{{#if hasRejectionReason}}
+<p style="font-size:16px; padding:15px; background-color:#f8f8f8; border-left:4px solid #e74c3c;">
+ <strong>거절 사유:</strong><br/>
+ {{rejectionReason}}
+</p>
+{{/if}}
+
+{{#if approvalDate}}
+<p style="font-size:16px;">
+ <strong>승인 날짜:</strong> {{approvalDate}}
+</p>
+{{/if}}
+
+{{#if rejectionDate}}
+<p style="font-size:16px;">
+ <strong>거절 날짜:</strong> {{rejectionDate}}
+</p>
+{{/if}}
+
+<p style="font-size:16px;">
+ 자세한 내용을 확인하고 추가 조치를 취하시려면 로그인해 주세요:
+ <br />
+ <a href="{{loginUrl}}" target="_blank" style="color:#163CC4; text-decoration:underline;">
+ 포털로 이동
+ </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 |
