-
Notifications
You must be signed in to change notification settings - Fork 0
/
emailtemplate-lead.html
122 lines (122 loc) · 3.69 KB
/
emailtemplate-lead.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Business Inquiry</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
.email-container {
max-width: 600px;
margin: 20px auto;
background: #fff;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header {
background-color: #0078D7;
color: white;
padding: 20px;
text-align: center;
}
.header img {
max-width: 100px;
margin-bottom: 10px;
}
.header h1 {
margin: 0;
font-size: 24px;
}
.content-main {
padding: 3px;
text-align: center;
}
.content-sub {
padding: 3px;
text-align: left;
}
.content p {
font-size: 16px;
margin: 10px 0;
}
.action-buttons {
text-align: center;
margin: 20px 0;
}
.action-buttons a {
display: inline-block;
padding: 12px 24px;
color: white;
background-color: #0078D7;
text-decoration: none;
border-radius: 5px;
margin: 5px 0;
}
.action-buttons a:hover {
background-color: #005bb5;
}
.footer {
background-color: #f4f4f4;
padding: 10px;
text-align: center;
font-size: 14px;
color: #666;
}
.footer a {
color: #0078D7;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="email-container">
<!-- Header -->
<div class="header">
<img src="https://cyberentrance.com/wp-content/uploads/2023/12/cyber-entry-logo-sm-66x66.png" alt="CyberEntrance Logo">
<h1>CyberEntrance Business Inquiry</h1>
</div>
<!-- Main Content -->
<div class="content-main">
<p>Your website received a new lead:</p>
</div>
<!-- Sub Content -->
<div class="content-sub">
<p>mycontent</p>
</div>
<!-- More Main Content -->
<div class="content-main">
<p>Please respond to the lead as early as possible. <strong>DO NOT</strong> reply to this email directly.</p>
<p>Click the action buttons below once you are done:</p>
<div class="action-buttons">
<a href="#">I Replied It Already</a>
<a href="#">Ignore This Inquiry</a>
</div>
<p>
We build free websites for businesses. This email was sent because you are the company's contact.
This lead indicates our websites are attracting customers. Claim your website for free to avoid interruptions and receive leads directly.
</p>
<p>
CyberEntrance is a website, software development, and marketing business based in BC, Canada.
</p>
</div>
<!-- Footer -->
<div class="footer">
<p>
<a href="https://cyberentrance.com">Contact Us</a> |
<a href="#">Unsubscribe</a>
</p>
<p>© 2024 <a href="https://cyberentrance.com">CyberEntrance.com</a></p>
</div>
</div>
</body>
</html>