blob: 9d93bb7bbb2fd627788302926639db52c740e6f7 (
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{t "email.additionalInfo.title"}}</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
.header {
background-color: #0056b3;
color: white;
padding: 20px;
text-align: center;
border-radius: 5px 5px 0 0;
}
.content {
padding: 20px;
border: 1px solid #ddd;
border-top: none;
border-radius: 0 0 5px 5px;
}
.button {
background-color: #0056b3;
color: white;
padding: 12px 20px;
text-decoration: none;
border-radius: 5px;
display: inline-block;
margin-top: 15px;
font-weight: bold;
}
.footer {
margin-top: 30px;
text-align: center;
font-size: 0.8em;
color: #777;
}
</style>
</head>
<body>
<div class="header">
<h1>{{t "email.additionalInfo.header"}}</h1>
</div>
<div class="content">
<p>{{t "email.additionalInfo.greeting" vendorName=vendorName}}</p>
<p>{{t "email.additionalInfo.messageP1"}}</p>
<p>{{t "email.additionalInfo.messageP2"}}</p>
<p>{{t "email.additionalInfo.messageP3"}}</p>
<div style="text-align: center;">
<a href="{{vendorInfoUrl}}" class="button">{{t "email.additionalInfo.buttonText"}}</a>
</div>
<p>{{t "email.additionalInfo.messageP4"}}</p>
<p>{{t "email.additionalInfo.closing"}}</p>
<p>EVCP Team</p>
</div>
<div class="footer">
<p>© {{currentYear}} EVCP. {{t "email.additionalInfo.footerText"}}</p>
</div>
</body>
</html>
|