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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
<!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}} ({{vendorCode}})님,</p>
<p style="font-size:16px;">PQ 정보를 제출해 주셔서 감사합니다. 검토팀이 초기 검토를 완료하였으며 일부 수정이나 추가 정보를 요청드립니다.</p>
<p style="font-size:16px;"><span style="color:#d14; font-weight:bold;">조치 필요:</span> 계정에 로그인하셔서 아래 의견을 바탕으로 PQ 제출 내용을 업데이트해 주세요.</p>
{{#if hasGeneralComment}}
<div style="margin:20px 0; padding:15px; background-color:#f9f9f9; border-left:4px solid #0071bc;">
<h3>일반 의견:</h3>
<p>{{generalComment}}</p>
</div>
{{/if}}
<div style="margin:20px 0; padding:15px; background-color:#f9f9f9; border-left:4px solid #0071bc;">
<h3>세부 항목 의견 ({{commentCount}}개):</h3>
{{#each comments}}
<div style="margin-bottom:15px; border-bottom:1px solid #eee; padding-bottom:15px;">
<div>
<span style="font-weight:bold; color:#0071bc; display:inline-block; min-width:60px;">{{code}}</span>
<span style="font-weight:bold; color:#333;">{{checkPoint}}</span>
</div>
<p>{{text}}</p>
</div>
{{/each}}
</div>
<p style="font-size:16px;">위 의견을 검토하시고 PQ 제출 내용을 업데이트해 주세요.</p>
<div style="text-align:center; margin:20px 0;">
<a href="{{loginUrl}}" class="btn" style="padding:10px 20px; font-size:16px; background-color:#0071bc; color:#fff; text-decoration:none; border-radius:4px;">로그인하여 PQ 업데이트하기</a>
</div>
<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>
|