73 lines
2.1 KiB
Handlebars
73 lines
2.1 KiB
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Notification</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>Notification</h1>
|
|
</div>
|
|
<div class="content">
|
|
<p>Hello,</p>
|
|
|
|
<p>Your friend {{name}} ({{email}}) believed you might find this <b>{{#if (eq type "commercialProperty")}}Commercial Property{{else if (eq type "business")}}Business{{/if}} for sale listing </b> on <a href="{{url}}">bizmatch.net</a> interesting.</p>
|
|
|
|
<span class="info-value"><a href="{{url}}/listing/{{id}}">{{listingTitle}}</a></span>
|
|
|
|
<p>Bizmatch is one of the most reliable platforms for buying and selling businesses.</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> |