forked from muicss/mui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml-email.html
More file actions
112 lines (107 loc) · 3.64 KB
/
html-email.html
File metadata and controls
112 lines (107 loc) · 3.64 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width" />
<!-- NOTE: external links are for testing only -->
<link href="//cdn.muicss.com/mui-latest/email/mui-email-styletag.css" rel="stylesheet" />
<link href="//cdn.muicss.com/mui-latest/email/mui-email-inline.css" rel="stylesheet" />
<style>
body,
.mui-body {
background-color: #eee;
font-size: 15px;
}
.mui-container,
.mui-container-fixed {
padding-top: 15px;
padding-bottom: 15px;
}
#content-wrapper h2 {
margin-top: 0px;
margin-bottom: 0px;
}
#content-wrapper > tbody > tr > td {
padding-bottom: 15px;
}
#content-wrapper .mui--divider-top {
padding-top: 15px;
}
#last-cell {
padding-bottom: 15px;
}
</style>
</head>
<body>
<table class="mui-body" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<center>
<!--[if mso]><table><tr><td class="mui-container-fixed"><![endif]-->
<div class="mui-container">
<h3 class="mui--text-center">Brand.io</h3>
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td class="mui-panel">
<table
id="content-wrapper"
border="0"
cellpadding="0"
cellspacing="0"
width="100%"
>
<tbody>
<tr>
<td>
<h2>Welcome to Brand.io!</h2>
</td>
</tr>
<tr>
<td class="mui--divider-top">
Hello Friend,
</td>
</tr>
<tr>
<td>
Thanks for signing up for our service! Brand.io is the fun new way to brand your I/O. Please verify your email by clicking this button:
</td>
</tr>
<tr>
<td>
<table
class="mui-btn mui-btn--primary"
border="0"
cellspacing="0"
cellpadding="0"
>
<tr>
<td>
<a href="#">Verify email address</a>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
Thanks,
</td>
</tr>
<tr>
<td id="last-cell">
The Brand.io Team
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</table>
</div>
<!--[if mso]></td></tr></table><![endif]-->
</center>
</td>
</tr>
</table>
</body>
</html>