blob: f3c351776d04e63e33663f8e4694698325502721 (
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>협력사 Red Flag 발생 공지</title>
<style>
body {
font-family: 'Malgun Gothic', '맑은 고딕', Arial, sans-serif;
line-height: 1.6;
color: #333333;
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: #f5f5f5;
}
.container {
background-color: #ffffff;
border-radius: 8px;
padding: 30px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header {
text-align: center;
border-bottom: 2px solid #e9ecef;
padding-bottom: 20px;
margin-bottom: 30px;
}
.header h1 {
color: #dc2626;
font-size: 24px;
margin: 0;
}
.content p {
margin: 16px 0;
}
.guide-box {
background-color: #f8f9fa;
border-left: 4px solid #2563eb;
padding: 16px 20px;
border-radius: 6px;
margin: 24px 0;
}
.guide-box strong {
color: #1f2937;
}
.footer {
border-top: 1px solid #e9ecef;
padding-top: 20px;
margin-top: 30px;
text-align: center;
color: #6b7280;
font-size: 14px;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>협력사 Red Flag 발생 공지</h1>
</div>
<div class="content">
<p>
협력사 <strong>{{vendorName}}</strong>에서 e-VCP를 통하여 실시한 준법설문 결과
<strong>Red FLAG 이슈(준법 리스크)</strong>가 발생하여 공지 드립니다.
</p>
<div class="guide-box">
<p>
알람을 받은 임직원께서는 아래 버튼을 클릭하여 해당 협력사의 준법리스크 설문 결과를 확인하시고, 준법리스크 해당 사항을 협력사에 확인한 후
<strong>1주일 이내에 준법경영시스템에 문의 등록</strong>하여 Compliance팀의 가이드에 따라 조치 바랍니다.
</p>
</div>
{{#if responseLink}}
<div style="text-align: center; margin: 30px 0;">
<a href="{{responseLink}}" style="display: inline-block; padding: 14px 32px; background-color: #2563eb; color: #ffffff; text-decoration: none; border-radius: 6px; font-size: 16px; font-weight: bold;">
준법설문 응답현황 보기
</a>
</div>
<p style="color: #666666; font-size: 14px; line-height: 1.6; margin-top: 20px;">
버튼이 작동하지 않는 경우, 아래 링크를 복사하여 브라우저에 붙여넣기 해주세요:<br>
<a href="{{responseLink}}" style="color: #2563eb; word-break: break-all;">{{responseLink}}</a>
</p>
{{/if}}
<p>
기타 문의사항은 <strong>Compliance팀 박지은 프로</strong>에게 문의 바랍니다.
</p>
</div>
<div class="footer">
<p>이 메일은 eVCP 시스템에서 자동으로 발송되었습니다.</p>
</div>
</div>
</body>
</html>
|