This commit is contained in:
teddy
2025-04-21 11:58:12 +07:00
parent 4bfb6b4861
commit a69b44625e
7 changed files with 185 additions and 10 deletions

55
template/general.html Normal file
View File

@@ -0,0 +1,55 @@
<!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:9000/create-bucket-test/test-folder/LOGO_HIS_NI_New_Contrasted-removebg-preview.png?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=BDYv2npRYZw5fcXzd80c%2F20250417%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250417T045323Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=c399ff0031b0d8bc9b7073171bca8ad3a9c2b82a374e25e60dbd35bd5bd5775e"
alt="logo"
width="100px"
/>
</div>
</div>
</body>
</html>