summaryrefslogtreecommitdiff
path: root/lib/mail/templates/pq-supplement-request.hbs
blob: 68ea64f6c214b93e460ccbcdb2635b85d73242da (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
55
56
<!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>PQ 보완요청</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 { font-size: 14px; color: #111827; white-space: pre-wrap; }
      .btn { display: inline-block; background: #0ea5e9; color: #fff; text-decoration: none; padding: 10px 14px; border-radius: 6px; font-weight: 600; }
      .footer { margin-top: 24px; font-size: 12px; color: #6b7280; }
    </style>
  </head>
  <body>
    <div class="container">
      <h1 class="header">[eVCP] PQ 보완요청 안내</h1>

      <p>
        안녕하세요, <strong>{{vendorName}}</strong> 담당자님.<br/>
        아래 PQ에 대해 보완 요청 사항이 접수되었습니다.
      </p>

      <div class="section">
        <div class="label">PQ 번호</div>
        <div class="value">{{pqNumber}}</div>
      </div>

      <div class="section">
        <div class="label">보완 요청 내용</div>
        <div class="value">{{comment}}</div>
      </div>

      {{#if reviewUrl}}
      <p style="margin: 20px 0;">
        <a class="btn" href="{{reviewUrl}}" target="_blank" rel="noopener">PQ 확인 및 수정하기</a>
      </p>
      {{/if}}

      <p class="muted">
        본 메일은 시스템에서 자동 발송되었습니다. 문의가 필요하신 경우 회신 또는 담당자에게 연락해 주세요.
      </p>

      <div class="footer">
        © {{year}} Samsung Heavy Industries. All rights reserved.
      </div>
    </div>
  </body>
  </html>