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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
|
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>방문실사 요청</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;
line-height: 1.6;
}
.email-container {
max-width: 600px;
margin: 0 auto;
background-color: #ffffff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header {
border-bottom: 2px solid #163CC4;
padding-bottom: 20px;
margin-bottom: 30px;
}
.company-info {
background-color: #f8f9fa;
padding: 20px;
border-radius: 6px;
margin: 20px 0;
border-left: 4px solid #163CC4;
}
.section {
margin: 20px 0;
}
.section-title {
font-weight: bold;
color: #163CC4;
margin-bottom: 10px;
font-size: 16px;
}
.info-item {
margin: 8px 0;
padding-left: 20px;
}
.info-label {
font-weight: bold;
color: #374151;
}
.info-value {
color: #1f2937;
}
.attendees-list {
list-style: none;
padding-left: 20px;
}
.attendees-list li {
margin: 5px 0;
padding-left: 15px;
position: relative;
}
.attendees-list li:before {
content: "•";
color: #163CC4;
font-weight: bold;
position: absolute;
left: 0;
}
.request-items {
list-style: none;
padding-left: 20px;
}
.request-items li {
margin: 8px 0;
padding-left: 15px;
position: relative;
}
.request-items li:before {
content: "○";
color: #163CC4;
font-weight: bold;
position: absolute;
left: 0;
}
.footer {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #e5e7eb;
text-align: center;
color: #6b7280;
font-size: 14px;
}
.deadline {
background-color: #fef3c7;
border: 1px solid #f59e0b;
padding: 15px;
border-radius: 6px;
margin: 20px 0;
}
.deadline strong {
color: #d97706;
}
</style>
</head>
<body>
<div class="email-container">
<!-- 헤더 -->
<div class="header">
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td align="center">
<span style="display: block; text-align: left; color: #163CC4; font-weight: bold; font-size: 32px;">eVCP</span>
</td>
</tr>
</table>
</div>
<!-- 수신/발신 정보 -->
<div class="company-info">
<div style="margin-bottom: 15px;">
<span class="info-label">수신:</span>
<span class="info-value">{{vendorName}} {{vendorEmail}} 귀하</span>
</div>
<div>
<span class="info-label">발신:</span>
<span class="info-value">{{requesterName}} {{requesterTitle}} ({{requesterEmail}})</span>
</div>
</div>
<!-- 인사말 -->
<p style="font-size: 16px; margin-bottom: 20px;">
귀사 일익 번창하심을 기원합니다.
</p>
<!-- 본문 -->
<p style="font-size: 16px; margin-bottom: 20px;">
귀사와 거래 전 당사와 거래 가능 여부를 확인하고자 귀사의 실 제작 공장(혹은 지정 장소)을 방문하여 거래 가능 기준 준수 여부를 점검하고자 합니다.
</p>
<p style="font-size: 16px; margin-bottom: 20px;">
방문 및 점검을 위하여 다음과 같이 관련 정보를 전달드림과 동시에 필요 정보와 자료를 요청 드리오니 하기 제출 마감일(혹은 요청 실사 시작일 중 먼저 도래하는 날) 이내로 제출하시어 양사 간 원활한 업무 진행이 될 수 있도록 적극적인 협조 부탁드립니다.
</p>
<!-- 마감일 안내 -->
<div class="deadline">
<strong>📅 제출 마감일: {{deadlineDate}}</strong>
</div>
<!-- 구분선 -->
<div style="text-align: center; margin: 30px 0;">
<span style="font-weight: bold; font-size: 18px; color: #163CC4;">- 다 음 -</span>
</div>
<!-- 실사 정보 -->
<div class="section">
<div class="section-title">1. 실사방법</div>
<div class="info-item">
<span class="info-value">{{investigationMethod}}</span>
{{#if investigationMethodDescription}}
<div style="font-size: 14px; color: #6b7280; margin-top: 5px;">
(안내: {{investigationMethodDescription}})
</div>
{{/if}}
</div>
</div>
<div class="section">
<div class="section-title">2. 실사요청일 및 기간</div>
<div class="info-item">
<span class="info-value">{{requestedStartDate}} ~ {{requestedEndDate}} (W/D 기준 {{inspectionDuration}}일)</span>
</div>
</div>
{{#if investigationAddress}}
<div class="section">
<div class="section-title">3. 실사 주소</div>
<div class="info-item">
<span class="info-value">{{investigationAddress}}</span>
</div>
</div>
{{/if}}
<div class="section">
<div class="section-title">{{#if investigationAddress}}4{{else}}3{{/if}}. 삼성중공업 실사 참석 인원 정보</div>
{{#if shiAttendees}}
<ul class="attendees-list">
{{#each shiAttendees}}
<li>{{this}}</li>
{{/each}}
</ul>
{{else}}
<div class="info-item">
<span class="info-value">참석 예정 부문이 없습니다.</span>
</div>
{{/if}}
{{#if shiAttendeeDetails}}
<div style="margin-top: 10px; padding-left: 20px; font-size: 14px; color: #6b7280;">
<strong>참석자 상세정보:</strong><br>
{{shiAttendeeDetails}}
</div>
{{/if}}
</div>
<div class="section">
<div class="section-title">{{#if investigationAddress}}5{{else}}4{{/if}}. 협력업체 요청정보 및 자료</div>
<ul class="request-items">
{{#each vendorRequests}}
<li>{{this}}</li>
{{/each}}
</ul>
{{#if otherVendorRequests}}
<div style="margin-top: 10px; padding-left: 20px; font-size: 14px; color: #6b7280;">
{{otherVendorRequests}}
</div>
{{/if}}
</div>
{{#if additionalRequests}}
<div class="section">
<div class="section-title">{{#if investigationAddress}}6{{else}}5{{/if}}. 추가 요청사항</div>
<div class="info-item">
<span class="info-value">{{additionalRequests}}</span>
</div>
</div>
{{/if}}
<!-- 문의사항 -->
<div style="margin: 30px 0; padding: 20px; background-color: #f8f9fa; border-radius: 6px;">
<p style="font-size: 16px; margin: 0;">
상기 내역에 대해 문의사항이 있을 경우 구매 담당자에게 연락 바랍니다.
</p>
</div>
<!-- 마무리 -->
<p style="font-size: 16px; margin-bottom: 20px;">감사합니다.</p>
<!-- 발신자 정보 -->
<div style="margin-top: 30px; padding-top: 20px; border-top: 1px solid #e5e7eb;">
<p style="font-size: 14px; margin: 5px 0; color: #374151;">
{{requesterName}} / {{requesterTitle}} / {{requesterEmail}}
</p>
<p style="font-size: 14px; margin: 5px 0; color: #374151;">
SAMSUNG HEAVY INDUSTRIES CO., LTD.
</p>
<p style="font-size: 14px; margin: 5px 0; color: #374151;">
80, Jangpyeong 3-ro, Geoje-si, Gyeongsangnam-do, Republic of Korea, 53261
</p>
</div>
<!-- 포털 링크 -->
<div style="text-align: center; margin: 30px 0;">
<a href="{{portalUrl}}" target="_blank" style="display:inline-block; background-color:#163CC4; color:#ffffff; padding:12px 24px; text-decoration:none; border-radius:6px; font-weight:bold;">
협력업체 정보 입력하기
</a>
</div>
<!-- 푸터 -->
<div class="footer">
<p style="margin: 4px 0;">© {{currentYear}} EVCP. All rights reserved.</p>
<p style="margin: 4px 0;">이 메일은 자동으로 발송되었습니다. 회신하지 마세요.</p>
</div>
</div>
</body>
</html>
|