summaryrefslogtreecommitdiff
path: root/lib/mail/templates/pq-investigation-supplement-request.hbs
blob: c869b2bd9f0e429738986737f759a274ea865449 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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>