75 lines
1.3 KiB
HTML
75 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="hu">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Szaturnusz</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
background-color: #f4f4f4;
|
|
}
|
|
.email-container {
|
|
background-color: #ffffff;
|
|
padding: 30px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
|
}
|
|
.header {
|
|
text-align: center;
|
|
border-bottom: 3px solid #2980b9;
|
|
padding-bottom: 20px;
|
|
margin-bottom: 30px;
|
|
}
|
|
.header h1 {
|
|
color: #2980b9;
|
|
margin: 0;
|
|
display: inline-block;
|
|
}
|
|
.header img {
|
|
height: 54px;
|
|
float: right;
|
|
}
|
|
.content {
|
|
margin-bottom: 30px;
|
|
}
|
|
.footer {
|
|
text-align: center;
|
|
padding-top: 20px;
|
|
border-top: 1px solid #eee;
|
|
color: #666;
|
|
font-size: 12px;
|
|
}
|
|
a {
|
|
color: #2980b9;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="email-container">
|
|
<div class="header">
|
|
<h1>{{SUBJECT}}</h1>
|
|
<img src="cid:logo_cid">
|
|
</div>
|
|
|
|
<div class="content">
|
|
{{CONTENT}}
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<p>Ez egy automatikusan generált email.<br>
|
|
Szatuna Kft | kapcsolat@szatuna.hu</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|