blob: c9a721f77aafb8a482f6e722932a393fb985543f (
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
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>상업 입찰 평가 (CBE) 알림</title>
<style>
body {
margin: 0 !important;
padding: 20px !important;
background-color: #f5f5f5;
font-family: Arial, sans-serif;
color: #111827;
}
.email-container {
max-width: 600px;
margin: 0 auto;
background-color: #ffffff;
border: 1px solid #e5e7eb;
border-radius: 6px;
padding: 24px;
}
.info-box {
background-color: #F1F5F9;
border-radius: 6px;
padding: 16px;
margin-bottom: 20px;
}
.info-item {
margin-bottom: 8px;
}
.label {
font-weight: bold;
color: #4B5563;
}
.button {
display: inline-block;
background-color: #163CC4;
color: #ffffff;
padding: 10px 20px;
text-decoration: none;
border-radius: 4px;
font-weight: bold;
}
</style>
</head>
<body>
<div class="email-container">
<p style="font-size:16px;">안녕하세요, <strong>{{contactName}}</strong>님</p>
<p style="font-size:16px;"><strong>[RFQ {{rfqCode}}]</strong>에 대한 상업 입찰 평가(CBE)가 생성되어 알려드립니다.
아래 세부 정보를 확인하시고 필요한 조치를 취해주시기 바랍니다.</p>
<div class="info-box">
<h3 style="font-size:20px; color:#163CC4; margin-top:0; margin-bottom:12px;">RFQ 정보</h3>
<div class="info-item"><span class="label">RFQ 코드:</span> {{rfqCode}}</div>
<div class="info-item"><span class="label">프로젝트 코드:</span> {{projectCode}}</div>
<div class="info-item"><span class="label">프로젝트명:</span> {{projectName}}</div>
{{#if dueDate}}
<div class="info-item"><span class="label">마감일:</span> {{dueDate}}</div>
{{/if}}
</div>
<div class="info-box">
<h3 style="font-size:20px; color:#163CC4; margin-top:0; margin-bottom:12px;">CBE 평가 세부사항</h3>
<div class="info-item"><span class="label">협력업체:</span> {{vendorName}} ({{vendorCode}})</div>
{{#if paymentTerms}}
<div class="info-item"><span class="label">지급 조건:</span> {{paymentTerms}}</div>
{{/if}}
{{#if incoterms}}
<div class="info-item"><span class="label">Incoterms:</span> {{incoterms}}</div>
{{/if}}
{{#if deliverySchedule}}
<div class="info-item"><span class="label">배송 일정:</span> {{deliverySchedule}}</div>
{{/if}}
</div>
{{#if description}}
<div class="info-box">
<h3 style="font-size:20px; color:#163CC4; margin-top:0; margin-bottom:12px;">RFQ 설명</h3>
<p style="font-size:16px; margin:0;">{{description}}</p>
</div>
{{/if}}
{{#if notes}}
<div class="info-box">
<h3 style="font-size:20px; color:#163CC4; margin-top:0; margin-bottom:12px;">비고</h3>
<p style="font-size:16px; margin:0;">{{notes}}</p>
</div>
{{/if}}
<p style="text-align: center; margin: 25px 0;">
<a href="{{loginUrl}}/rfq/{{rfqId}}/cbe/{{cbeId}}" class="button">
CBE 평가 확인하기
</a>
</p>
<p style="font-size:16px;">이 이메일에 첨부된 파일을 확인하시거나, 시스템에 로그인하여 자세한 정보를 확인해 주세요.
추가 문의사항이 있으시면 구매담당자에게 연락해 주시기 바랍니다.</p>
<p style="font-size:16px;">감사합니다.<br />eVCP 팀</p>
</div>
</body>
</html>
|