containerized; first fixes; html templates added
This commit is contained in:
67
internal/templates/mail_newRegistration.html
Normal file
67
internal/templates/mail_newRegistration.html
Normal file
@@ -0,0 +1,67 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Willkommen beim Dörpsmobil Hasloh e.V.</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
line-height: 1.6;
|
||||
color: #333;
|
||||
margin: 0;
|
||||
padding: 20px;
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
.container {
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
padding: 20px;
|
||||
background-color: #fff;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 8px;
|
||||
}
|
||||
h1 {
|
||||
color: #007b5e;
|
||||
}
|
||||
p {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
.contact-info {
|
||||
margin-top: 20px;
|
||||
}
|
||||
.contact-info strong {
|
||||
display: block;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
a {
|
||||
color: #007b5e;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>{{.Firstname}} {{.LastName}} hat sich registriert</h1>
|
||||
<p>Ein neues Vereinsmitglied hat sich registriert</p>
|
||||
<p>{{.Firstname}} {{.LastName}} hat sich registriert. Hier sind die Daten:</p>
|
||||
<br>
|
||||
<div class="contact-info">
|
||||
<strong>Registrierungsdaten:</strong>
|
||||
Name: {{.Firstname}} {{.LastName}} <br>
|
||||
Email: {{.Email}}<br>
|
||||
IBAN: {{.IBAN}}<br>
|
||||
BIC: {{.BIC}}<br>
|
||||
Mandatsreferenz: {{.MandateReference}}<br>
|
||||
</div>
|
||||
<p>Mit freundlichen Grüßen,<br>
|
||||
der Server
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user