blob: 62ea4f0a44d744fe1416083003ed577f6389a6e3 (
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>본입찰 초대</title>
<style>
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }
.container { max-width: 600px; margin: 0 auto; padding: 20px; }
.header { background-color: #f8f9fa; padding: 20px; border-radius: 8px; margin-bottom: 20px; }
.content { margin: 20px 0; }
.highlight { background-color: #d4edda; padding: 15px; border-left: 4px solid #28a745; margin: 15px 0; }
.footer { margin-top: 30px; padding-top: 20px; border-top: 1px solid #eee; font-size: 12px; color: #666; }
.button { background-color: #28a745; color: white; padding: 12px 24px; text-decoration: none; border-radius: 4px; display: inline-block; margin: 10px 0; }
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>본입찰 초대</h1>
<p><strong>입찰 번호:</strong> {{biddingNumber}}</p>
<p><strong>입찰명:</strong> {{title}}</p>
</div>
<div class="content">
<p>안녕하세요, {{companyName}} 담당자님</p>
<p>사전견적에 참여해 주셔서 감사합니다. 귀하의 업체가 본입찰 대상업체로 선정되어 본입찰에 초대드립니다.</p>
<div class="highlight">
<h3>본입찰 정보</h3>
<ul>
<li><strong>프로젝트:</strong> {{projectName}}</li>
<li><strong>품목:</strong> {{itemName}}</li>
<li><strong>입찰 유형:</strong> {{biddingType}}</li>
</ul>
</div>
{{#if submissionStartDate}}
<p><strong>제출 기간:</strong> {{submissionStartDate}} ~ {{submissionEndDate}}</p>
{{/if}}
<p>본입찰은 사전견적 때와 달리 당사가 제안한 입찰 조건에 따라 응찰 여부만 결정하시면 됩니다. 품목별 견적 가격 작성과 견적서 첨부는 기존과 동일합니다.</p>
<p>본입찰 참여를 원하시는 경우, 아래 링크를 통해 시스템에 접속하여 견적을 제출해 주시기 바랍니다.</p>
<a href="{{biddingUrl}}" class="button">본입찰 참여하기</a>
<p><strong>주의사항:</strong></p>
<ul>
<li>본입찰은 선정된 업체만 참여 가능합니다.</li>
<li>제출 기한을 반드시 준수해 주시기 바랍니다.</li>
<li>궁금한 사항이 있으시면 담당자에게 연락해 주시기 바랍니다.</li>
</ul>
</div>
<div class="footer">
<p><strong>담당자:</strong> {{managerName}} ({{managerEmail}}, {{managerPhone}})</p>
<p>본 메일은 시스템에서 자동 발송된 메일입니다.</p>
</div>
</div>
</body>
</html>
|