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
|
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>기본계약서 법무검토 요청</title>
</head>
<body style="margin: 0; padding: 0; font-family: 'Malgun Gothic', '맑은 고딕', Arial, sans-serif; background-color: #f4f4f4;">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="background-color: #f4f4f4;">
<tr>
<td style="padding: 20px 0;">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="600" style="margin: 0 auto; background-color: #ffffff; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1);">
<!-- Header -->
<tr>
<td style="background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%); padding: 30px; text-align: center; border-radius: 8px 8px 0 0;">
<h1 style="margin: 0; color: #ffffff; font-size: 24px; font-weight: bold;">
📋 법무검토 요청
</h1>
</td>
</tr>
<!-- Content -->
<tr>
<td style="padding: 40px 30px;">
<p style="margin: 0 0 20px 0; font-size: 16px; line-height: 1.6; color: #333333;">
법무팀 담당자님께,
</p>
<p style="margin: 0 0 20px 0; font-size: 15px; line-height: 1.6; color: #555555;">
<strong>{{vendorName}}</strong>의 기본계약서(ID: {{contractId}})에 대한 법무검토가 요청되었습니다.
</p>
<div style="background-color: #e7f3ff; border-left: 4px solid #2193b0; padding: 15px; margin: 20px 0; border-radius: 4px;">
<p style="margin: 0 0 10px 0; font-size: 14px; color: #666666;">
<strong style="color: #2193b0;">계약서 정보</strong>
</p>
<p style="margin: 0; font-size: 13px; color: #555555; line-height: 1.8;">
• 계약서 ID: <strong>{{contractId}}</strong><br>
• 협력업체: <strong>{{vendorName}}</strong><br>
• 상태: <strong>협의 완료 / 법무검토 대기</strong>
</p>
</div>
<!-- CTA Button -->
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="margin: 30px 0;">
<tr>
<td style="text-align: center;">
<a href="{{contractUrl}}" style="display: inline-block; padding: 14px 40px; background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%); color: #ffffff; text-decoration: none; border-radius: 6px; font-weight: bold; font-size: 16px; box-shadow: 0 4px 6px rgba(0,0,0,0.1);">
계약서 검토하기
</a>
</td>
</tr>
</table>
<p style="margin: 20px 0 0 0; font-size: 13px; line-height: 1.6; color: #777777;">
빠른 시일 내에 검토 부탁드립니다.
</p>
</td>
</tr>
<!-- Footer -->
<tr>
<td style="background-color: #f8f9fa; padding: 20px 30px; border-radius: 0 0 8px 8px; border-top: 1px solid #e9ecef;">
<p style="margin: 0 0 10px 0; font-size: 12px; color: #999999; text-align: center;">
본 메일은 발신 전용입니다. 회신하지 마세요.
</p>
<p style="margin: 0; font-size: 12px; color: #999999; text-align: center;">
© {{currentYear}} eVCP. All rights reserved.
</p>
<p style="margin: 10px 0 0 0; font-size: 12px; text-align: center;">
<a href="{{systemUrl}}" style="color: #2193b0; text-decoration: none;">eVCP 바로가기</a>
</p>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
|