diff options
Diffstat (limited to 'lib/mail/templates/pq-investigation-supplement-request.hbs')
| -rw-r--r-- | lib/mail/templates/pq-investigation-supplement-request.hbs | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/lib/mail/templates/pq-investigation-supplement-request.hbs b/lib/mail/templates/pq-investigation-supplement-request.hbs new file mode 100644 index 00000000..c869b2bd --- /dev/null +++ b/lib/mail/templates/pq-investigation-supplement-request.hbs @@ -0,0 +1,54 @@ +<!doctype html> +<html lang="ko"> + <head> + <meta charset="utf-8" /> + <meta http-equiv="x-ua-compatible" content="ie=edge" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <title>실사 보완요청</title> + <style> + body { font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans KR, Apple SD Gothic Neo, Helvetica, Arial, sans-serif; color: #111827; } + .container { max-width: 640px; margin: 0 auto; padding: 24px; background: #ffffff; } + .header { font-size: 20px; font-weight: 700; margin: 0 0 16px; } + .muted { color: #6b7280; font-size: 13px; } + .section { border: 1px solid #e5e7eb; border-radius: 8px; padding: 16px; margin: 16px 0; background: #fafafa; } + .label { font-size: 12px; color: #6b7280; margin-bottom: 4px; } + .value { margin-bottom: 12px; } + .button { display: inline-block; padding: 12px 24px; background-color: #2563eb; color: #ffffff; text-decoration: none; border-radius: 6px; font-weight: 500; } + .footer { border-top: 1px solid #e5e7eb; padding-top: 16px; margin-top: 32px; text-align: center; font-size: 12px; color: #6b7280; } + </style> + </head> + <body> + <div class="container"> + <h1 class="header">실사 보완요청 안내</h1> + <p class="muted">eVCP 실사 시스템에서 실사 보완요청이 접수되었습니다.</p> + + <div class="section"> + <div class="label">협력업체</div> + <div class="value"><strong>{{vendorName}}</strong></div> + + <div class="label">실사 번호</div> + <div class="value">{{investigationNumber}}</div> + + <div class="label">보완 내용</div> + <div class="value">{{supplementComment}}</div> + + <div class="label">요청일</div> + <div class="value">{{requestedAt}}</div> + </div> + + <div style="text-align: center; margin: 32px 0;"> + <a href="{{reviewUrl}}" class="button">실사 확인 및 보완하기</a> + </div> + + <p style="color: #374151; line-height: 1.5;"> + 위 보완 사항을 확인하시고, 시스템에서 필요한 자료를 제출해 주시기 바랍니다.<br/> + 추가 문의사항이 있으시면 담당자에게 연락 부탁드립니다. + </p> + + <div class="footer"> + <p>이 메일은 자동으로 발송된 것입니다.<br/> + © {{year}} eVCP. All rights reserved.</p> + </div> + </div> + </body> +</html> |
