84 lines
2.2 KiB
HTML
84 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Work Anniversary</title>
|
|
<style>
|
|
body {
|
|
font-family: "Segoe UI", Tahoma, sans-serif;
|
|
background-color: #f5f7fa;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.email-container {
|
|
max-width: 100%;
|
|
margin: 30px auto;
|
|
background-color: #ffffff;
|
|
padding: 25px;
|
|
border-radius: 8px;
|
|
border: 1px solid #e0e0e0;
|
|
}
|
|
.header {
|
|
background-color: #00add8;
|
|
color: #ffffff;
|
|
padding: 20px;
|
|
text-align: center;
|
|
border-radius: 6px 6px 0 0;
|
|
}
|
|
.header h1 {
|
|
margin: 0;
|
|
font-size: 24px;
|
|
}
|
|
.content {
|
|
padding: 20px;
|
|
text-align: center;
|
|
}
|
|
.content h2 {
|
|
color: #00add8;
|
|
font-size: 20px;
|
|
}
|
|
.content p {
|
|
color: #444;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
}
|
|
.logo {
|
|
width: 80px;
|
|
margin: 20px auto;
|
|
}
|
|
.footer {
|
|
font-size: 13px;
|
|
color: #888;
|
|
text-align: center;
|
|
margin-top: 30px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="email-container">
|
|
<div class="header">
|
|
<h1>🎉 Work Anniversary!</h1>
|
|
</div>
|
|
<div class="content">
|
|
<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"
|
|
/>
|
|
<h2>Hai {{.Name}},</h2>
|
|
<p>
|
|
Hari ini menandai tahun ke-<strong>{{.Year}}</strong> kamu di
|
|
perusahaan ini. Terima kasih atas dedikasi, semangat, dan kontribusimu
|
|
selama ini!
|
|
</p>
|
|
<p>
|
|
Kami bangga memiliki kamu dalam tim teknologi kami. Mari terus
|
|
berkembang bersama — satu commit, satu deploy, satu milestone pada
|
|
satu waktu. 🚀
|
|
</p>
|
|
</div>
|
|
<div class="footer">© HIS 💙</div>
|
|
</div>
|
|
</body>
|
|
</html>
|