forked from BrunaNayara/send-emails
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathemail_template2.html
129 lines (110 loc) · 4.8 KB
/
email_template2.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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Simple Responsive HTML Email Template</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300' rel='stylesheet' type='text/css'>
<style>
*{
box-sizing: border-box;
-moz-box-sizing: border-box;
}
html,body{
background: #eeeeee;
font-family: 'Open Sans', sans-serif, Helvetica, Arial;
}
img{
max-width: 100%;
}
/* This is what it makes reponsive. Double check before you use it! */
@media only screen and (max-width: 480px){
table tr td{
width: 100% !important;
float: left;
}
}
</style>
</head>
<body style="background: #eeeeee; padding: 10px; font-family: 'Open Sans', sans-serif, Helvetica, Arial;">
<center> <!-- Let's Center it. just in case email client does not support margin: 0 auto -->
<!-- ** Top Message
----------------------------------->
<p style="text-align: center; color: #666666; font-size: 12px; margin: 10px 0;">
If you can't see this message <a href="#" target="_blank">View it in your browser</a>.
</p>
<!-- ** Table begins here
----------------------------------->
<!-- Set table width to fixed width for Outlook(Outlook does not support max-width) -->
<table width="100%" cellpadding="0" cellspacing="0" bgcolor="FFFFFF" style="background: #ffffff; max-width: 600px !important; margin: 0 auto; background: #ffffff;">
<tr>
<td style="padding: 20px; text-align: center; background: #76ce3e;">
<h1 style="color: #ffffff">A Simple HTML Email Template</h1>
</td>
</tr>
<tr>
<td style="padding: 20px; text-align: center;">
<!-- ** 100% width
----------------------------------->
<p style="font-size:30px; margin: 5px;">100% width table</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam placerat, leo id facilisis facilisis, eget ultrices augue erat id tellus.</p>
<p style="border-radius: 40px; -moz-border-radius: 40px; padding: 15px 20px; margin: 10px auto; background: #76ce3e; display: inline-block;">
<a href="tel:8888888888" style="color: #fff; text-decoration: none;">Call Us (888) 888-8888</a>
</p>
</td>
</tr>
<tr>
<td>
<img src="http://www.ohsikpark.com/samples/email/sf.jpg" />
</td>
</tr>
<tr>
<td style="padding: 20px;">
<!-- ** 30% and 70%
----------------------------------->
<table border="0" cellpadding="0">
<tr>
<td width="30%" style="width: 30%; padding: 10px;">
<img src="http://www.ohsikpark.com/samples/email/profile.jpg" />
</td>
<td width="70%" style="width: 70%; padding: 10px; text-align: left;">
<h3>Say Something | 70% width</h3>
<p>Etiam placerat, leo id facilisis facilisis, sem tortor efficitur velit, eget ultrices augue erat id tellus.</p>
<p style="color: #666666; font-size: 12px;">Small Font Sample</p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td style="padding: 20px; background: #2B2E34;">
<!-- ** 50% and 50%
----------------------------------->
<table border="0" cellpadding="0" cellspacing="0" a>
<tr>
<td width="50%" style="width: 50%; padding: 10px; color: #ffffff; text-align: left;" valign="top">
<h2>About us</h2>
<p style="font-size: 14px;">Nam porta tellus sit amet lacus efficitur iaculis. Vestibulum massa orci, accumsan at mollis molestie, condimentum sed tortor. Duis dolor risus, sagittis vitae orci sit amet, sodales tristique risus.</p>
</td>
<td width="50%" style="width: 50%; padding: 10px; color: #ffffff; text-align: left;" valign="top">
<h2>Contact us</h2>
<!-- ** Footer contact
----------------------------------->
<table border="0" style="font-size: 14px;">
<tr><td>Call: (888) 888-8888</td></tr>
<tr><td>email: [email protected]</td></tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- ** Bottom Message
----------------------------------->
<p style="text-align: center; color: #666666; font-size: 12px; margin: 10px 0;">
Copyright © 2015. All rights reserved.<br />
If you do not want to recieve emails from us, you can <a href="#" target="_blank">unsubscribe</a>.
</p>
</center>
</body>
</html>