blob: 6458e2fbaf2841c70f919e0f51904a333eefc6b7 (
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>벤더 등록이 완료되었습니다</title>
<style>
body { font-family: 'Malgun Gothic', sans-serif; line-height: 1.6; }
.container { max-width: 600px; margin: 0 auto; padding: 20px; }
.header { background-color: #f5f5f5; padding: 10px; text-align: center; }
.content { padding: 20px 0; }
.vendor-code { font-size: 18px; font-weight: bold; background-color: #f0f0f0;
padding: 10px; margin: 15px 0; text-align: center; }
.button { display: inline-block; background-color: #28a745; color: white;
padding: 10px 20px; text-decoration: none; border-radius: 4px; }
.footer { margin-top: 20px; font-size: 12px; color: #777; }
</style>
</head>
<body>
<div class="container">
<div class="header">
<h2>벤더 등록이 완료되었습니다</h2>
</div>
<div class="content">
<p>{{vendorName}} 귀하,</p>
<p>축하합니다! 귀사의 벤더 등록이 완료되었으며 벤더 정보가 당사 시스템에 성공적으로 등록되었습니다.</p>
<p>귀사의 벤더 코드는 다음과 같습니다:</p>
<div class="vendor-code">{{vendorCode}}</div>
<p>향후 모든 의사소통 및 거래 시 이 벤더 코드를 사용해 주십시오. 이제 벤더 포털에 접속하여 계정 관리, 발주서 확인 및 인보이스 제출을 할 수 있습니다.</p>
<p style="text-align: center; margin: 25px 0;">
<a href="{{portalUrl}}" class="button">벤더 포털 접속</a>
</p>
<p>벤더 계정에 관한 질문이나 도움이 필요하시면 당사 벤더 관리팀에 문의해 주십시오.</p>
<p>파트너십에 감사드립니다.</p>
<p>감사합니다.<br>
eVCP 팀</p>
</div>
<div class="footer">
<p>이 메시지는 자동으로 발송되었습니다. 이 이메일에 회신하지 마십시오.</p>
</div>
</div>
</body>
</html>
|