<!DOCTYPE html>
<html>
<head>
<title>Test Message</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
color: #333;
margin: 0;
padding: 20px;
}
.container {
max-width: 600px;
margin: auto;
background: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #007BFF;
}
p {
line-height: 1.6;
}
.footer {
margin-top: 20px;
text-align: center;
font-size: 0.9em;
color: #666;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to Our Service!</h1>
<p>Dear User,</p>
<p>Thank you for signing up for our service. We are excited to have you on board. Please find below some important information to get you started.</p>
<ul>
<li>Feature 1: Description of feature 1.</li>
<li>Feature 2: Description of feature 2.</li>
<li>Feature 3: Description of feature 3.</li>
</ul>
<p>If you have any questions, feel free to reply to this email or visit our <a href="https://www.example.com/support">support page</a>.</p>
<p>Best regards,<br>The Team</p>
<div class="footer">
© 2024 Our Service, Inc. All rights reserved.
</div>
</div>
</body>
</html>