mirror of
https://github.com/absmach/magistrala.git
synced 2026-08-07 07:14:46 +00:00
843a0cae1f
Signed-off-by: WashingtonKK <washingtonkigan@gmail.com> Signed-off-by: dusan <borovcanindusan1@gmail.com> Signed-off-by: Arvindh <arvindh91@gmail.com> Co-authored-by: Arvindh <arvindh91@gmail.com> Co-authored-by: dusan <borovcanindusan1@gmail.com>
101 lines
2.6 KiB
Cheetah
101 lines
2.6 KiB
Cheetah
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{.Subject}}</title>
|
|
<style>
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
background-color: #f5f7fa;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.container {
|
|
max-width: 600px;
|
|
margin: 30px auto;
|
|
background-color: #ffffff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
}
|
|
.header {
|
|
background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
|
|
padding: 30px 40px;
|
|
text-align: center;
|
|
}
|
|
.header h1 {
|
|
color: #ffffff;
|
|
margin: 0;
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
}
|
|
.content {
|
|
padding: 40px;
|
|
}
|
|
.content p {
|
|
margin: 0 0 15px 0;
|
|
font-size: 15px;
|
|
}
|
|
.success-details {
|
|
background-color: #eafaf1;
|
|
border-left: 4px solid #27ae60;
|
|
padding: 20px;
|
|
margin: 25px 0;
|
|
border-radius: 4px;
|
|
}
|
|
.success-details p {
|
|
margin: 0;
|
|
font-size: 16px;
|
|
line-height: 1.8;
|
|
}
|
|
.icon-success {
|
|
text-align: center;
|
|
margin: 20px 0;
|
|
font-size: 48px;
|
|
}
|
|
.footer {
|
|
background-color: #f8f9fb;
|
|
padding: 25px 40px;
|
|
text-align: center;
|
|
font-size: 13px;
|
|
color: #666;
|
|
}
|
|
.footer-divider {
|
|
border: none;
|
|
border-top: 1px solid #e0e3e8;
|
|
margin: 30px 0 20px 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>Invitation Accepted</h1>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<div class="icon-success">✓</div>
|
|
|
|
<p>Dear <strong>{{.User}}</strong>,</p>
|
|
|
|
<div class="success-details">
|
|
<p>{{.Content}}</p>
|
|
</div>
|
|
|
|
<p>You can now collaborate with them in the domain.</p>
|
|
|
|
<hr class="footer-divider">
|
|
|
|
<p>Best regards,<br><strong>{{.Footer}}</strong></p>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<p>This is an automated email. Please do not reply directly to this message.</p>
|
|
<p style="margin-top: 10px; color: #999;">Powered by Magistrala</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|