casadoc/public/userportal/templates/emails/shared_property_email.html
2024-12-03 10:33:38 +01:00

75 lines
2.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CASADOC - Notifica Condivisione</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
}
.email-container {
max-width: 600px;
margin: 0 auto;
background: #ffffff;
border: 1px solid #dddddd;
border-radius: 10px;
overflow: hidden;
}
.email-header {
background: #007bff;
color: #ffffff;
padding: 20px;
text-align: center;
font-size: 24px;
font-weight: bold;
}
.email-body {
padding: 20px;
}
.email-footer {
background: #f1f1f1;
padding: 15px;
text-align: center;
font-size: 14px;
color: #777;
}
.email-footer a {
color: #007bff;
text-decoration: none;
}
.highlight {
color: #007bff;
font-weight: bold;
}
.cta {
margin-top: 20px;
display: inline-block;
background: #007bff;
color: #ffffff;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
}
</style>
</head>
<body>
<div class="email-container">
<div class="email-header">CASADOC</div>
<div class="email-body">
<h2>{EMAIL_SUBJECT}</h2>
<p>{EMAIL_MESSAGE}</p>
{EMAIL_CTA}
</div>
<div class="email-footer">
Questo messaggio è stato generato automaticamente da
<a href="https://casadoc.app">CASADOC</a>.
</div>
</div>
</body>
</html>