78 lines
2.2 KiB
Handlebars
78 lines
2.2 KiB
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Subscription Confirmation</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f4;
|
|
color: #333333;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.email-container {
|
|
max-width: 600px;
|
|
margin: 20px auto;
|
|
background-color: #ffffff;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
.header {
|
|
text-align: center;
|
|
border-bottom: 1px solid #dddddd;
|
|
padding-bottom: 20px;
|
|
}
|
|
.header h1 {
|
|
font-size: 24px;
|
|
color: #333333;
|
|
}
|
|
.content {
|
|
margin-top: 20px;
|
|
}
|
|
.content p {
|
|
font-size: 16px;
|
|
line-height: 1.6;
|
|
}
|
|
.content .plan-info {
|
|
font-weight: bold;
|
|
color: #0056b3;
|
|
}
|
|
.footer {
|
|
margin-top: 30px;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
color: #888888;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="email-container">
|
|
<div class="header">
|
|
<h1>Subscription Confirmation</h1>
|
|
</div>
|
|
<div class="content">
|
|
<p>Dear {{firstname}} {{lastname}},</p>
|
|
|
|
<p>Thank you for subscribing to our service! We are thrilled to have you on board.</p>
|
|
|
|
<p>Your subscription details are as follows:</p>
|
|
|
|
<p><span class="plan-info">{{#if (eq subscriptionPlan "professional")}}Professional Plan (CPA, Attorney, Title Company, Surveyor, Appraiser){{else if (eq subscriptionPlan "broker")}}Business Broker Plan{{/if}}</span></p>
|
|
|
|
<p>If you have any questions or need further assistance, please feel free to contact our support team at any time.</p>
|
|
|
|
<p>Thank you for choosing Bizmatch!</p>
|
|
|
|
<p>Best regards,</p>
|
|
<p>The Bizmatch Support Team</p>
|
|
</div>
|
|
<div class="footer">
|
|
<p>© 2024 Bizmatch. All rights reserved.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|