send simple test email to my email on server startup

This commit is contained in:
2026-04-13 09:32:22 -04:00
parent 590ea73a92
commit 6a985c1a84
3 changed files with 63 additions and 8 deletions

View File

@@ -0,0 +1,25 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Hi</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin-top: 50px;
}
img {
margin-top: 20px;
width: 150px;
height: 150px;
border-radius: 50%;
}
</style>
</head>
<body>
<h1>Hi {{.Username}}</h1>
<img src="{{avatar .Username}}" alt="Profile Picture" />
</body>
</html>