-
Notifications
You must be signed in to change notification settings - Fork 0
/
message.html
38 lines (38 loc) · 926 Bytes
/
message.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
<!DOCTYPE html>
<html>
<head>
<title>Beautiful Email</title>
<style>
/* Add some styling to make the email look nice */
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
padding: 20px;
}
h1 {
color: #333;
margin-top: 0;
}
.container {
background-color: #fff;
padding: 20px;
border-radius: 10px;
}
a {
color: #337ab7;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Hello!</h1>
<p>Thank you for signing up for our newsletter. We promise to only send you the most interesting and relevant content.</p>
<p>In the meantime, feel free to check out our <a href="https://devopslite.com">website</a> for more information about our company and products.</p>
<p>Best,<br>The Example Team</p>
</div>
</body>
</html>