blob: 5e8f16ee8be074216407f3aa86af48e44991d769 (
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
|
<!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: #f8d7da; padding: 15px; border-left: 4px solid #dc3545; margin: 15px 0; }
.footer { margin-top: 30px; padding-top: 20px; border-top: 1px solid #eee; font-size: 12px; color: #666; }
</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>
<li><strong>처리일:</strong> {{processedDate}}</li>
</ul>
</div>
{{#if reason}}
<p><strong>유찰 사유:</strong></p>
<p>{{reason}}</p>
{{/if}}
<p>향후 재입찰이 진행될 경우 별도 안내를 드릴 예정입니다.</p>
<p>입찰에 참여해 주셔서 감사합니다.</p>
</div>
<div class="footer">
<p><strong>담당자:</strong> {{managerName}} ({{managerEmail}}, {{managerPhone}})</p>
<p>본 메일은 시스템에서 자동 발송된 메일입니다.</p>
</div>
</div>
</body>
</html>
|