Files
email-notification/template/general.html
2025-05-05 10:32:49 +07:00

56 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8" />
<title>Email</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f4f6;
padding: 20px;
}
.container {
background-color: #ffffff;
padding: 20px;
border-radius: 8px;
max-width: 100%;
margin: auto;
border: 1px solid #e0e0e0;
}
.header {
color: #d62828;
font-size: 20px;
font-weight: bold;
margin-bottom: 15px;
}
.info {
font-size: 14px;
color: #333333;
margin-bottom: 10px;
}
.footer {
font-size: 12px;
color: #888;
margin-top: 20px;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<div class="info">
<p>{{.Message}}</p>
<br />
</div>
<div class="footer">
<p>Email ini dikirim oleh sistem.</p>
<img
src="http://36.66.3.44:7008/get-link?name=LOGO_HIS_NI_New_Contrasted-removebg-preview.png"
alt="logo"
width="100px"
/>
</div>
</div>
</body>
</html>