-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_email.html
More file actions
42 lines (40 loc) · 1022 Bytes
/
example_email.html
File metadata and controls
42 lines (40 loc) · 1022 Bytes
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
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
font-family: Arial, sans-serif;
}
.container {
width: 80%;
margin: auto;
}
.header, .footer {
background-color: #f8f8f8;
padding: 20px;
text-align: center;
color: #333;
}
.body-content {
margin: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h2>License {{mnr}} related to {{name|safe}} at {{date}}</h2>
</div>
<div class="body-content">
<p>Dear {{name|safe}},</p>
<p>This e-mail includes your license card.</p>
<ul>
{%for document_type, filename in attachments%}<li>{{document_type}}: {{filename}}</li>{%endfor%}
</ul>
</div>
<div class="footer">
<p>The Bird Ringing Experts</p>
</div>
</div>
</body>
</html>