-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathalert-email.html
78 lines (60 loc) · 2.13 KB
/
alert-email.html
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
<html>
<head>
<title>{{subject}}</title>
<meta charset="UTF-8">
<style>
td {
padding-right: 20px;
}
</style>
</head>
<body style="font-family: Verdana,serif; background-color: #eeeeee; padding: 10px;">
<table align="center" style="width: 100%; max-width: 700px; background-color: #fff; border-radius: 5px; padding: 30px;">
<tr>
<td>
<p style="text-align: center; margin-bottom: 0;font-size: 60px;">⚠️</p>
<h1 style="text-align: center; margin-top: 0; border-bottom: 1px solid black; padding-bottom: 0.1em; margin-bottom: 5px;">
TLS error reported</h1>
<h4 style="text-align: center; margin-bottom: 0.1em; margin-top: 5px;">TLS Report from {{orgName}} indicated
{{successCount}} successes, {{failureCount}} fails.</h4>
</td>
</tr>
<tr>
<td style="padding-left: 10px">
<br>
<p><strong>Report details</strong></p>
<table>
<tr>
<td>Organisation name</td>
<td>{{orgName}}</td>
</tr>
<tr>
<td>Report ID</td>
<td>{{reportId}}</td>
</tr>
<tr>
<td>Contact</td>
<td>{{contactInfo}}</td>
</tr>
<tr>
<td>Time window (UTC)</td>
<td>{{date}} {{start}} till {{end}}</td>
</tr>
<tr>
<td>Affected domain</td>
<td>{{domain}}</td>
</tr>
</table>
<br/>
<p><strong>Failure details</strong>:</p>
{{failureDetails}}
</td>
</tr>
<tr>
<td style="padding-top: 30px;"><small>This message was sent as your email is listed as a contact for TLS reports
sent to {{domain}}. If you believe this email was sent in error, please <a
href="mailto:postmaster@{{domain}}">get in touch with them.</a></small></td>
</tr>
</table>
</body>
</html>