bluebeandatachatbot / src /email_template /email_template.html
krinya's picture
Enhance email functionality and conversation summary generation
6513205
Raw
History Blame Contribute Delete
1.91 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modern Email Template</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
width: 100%;
max-width: 600px;
margin: 0 auto;
background-color: #ffffff;
border-radius: 8px;
overflow: hidden;
}
.header {
background-color: #3364D1;
padding: 20px;
text-align: center;
}
.header img {
max-width: 150px;
}
.content {
padding: 30px;
color: #333333;
line-height: 1.6;
}
.footer {
background-color: #f4f4f4;
color: #777777;
padding: 20px;
text-align: center;
font-size: 12px;
}
.button {
display: inline-block;
background-color: #3364D1;
color: #fff !important;
padding: 12px 24px;
text-decoration: none;
border-radius: 5px;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<img src="__LOGO_SRC__" alt="Blue Bean Logo" style="max-width: 150px; height: auto; display: block; margin: 0 auto; border: none;">
</div>
<div class="content">
<h1>__TITLE__</h1>
__CONTENT__
__BUTTON_HTML__
</div>
<div class="footer">
<p>&copy; Blue Bean Data</p>
<p>Rotterdam, The Netherlands</p>
</div>
</div>
</body>
</html>