Add contact email

This commit is contained in:
Arnaud Delcasse
2026-01-06 07:49:58 +01:00
parent 3f209fe461
commit 11ddd89133
3 changed files with 29 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
{{define "content"}}
<h2>Nouveau message de contact</h2>
<table style="width: 100%; border-collapse: collapse; margin-top: 20px;">
{{range $key, $value := .fields}}
<tr>
<td style="padding: 10px; border-bottom: 1px solid #eee; font-weight: bold; vertical-align: top; width: 30%;">{{$key}}</td>
<td style="padding: 10px; border-bottom: 1px solid #eee;">{{$value}}</td>
</tr>
{{end}}
</table>
<hr style="margin-top: 30px; border: none; border-top: 1px solid #ccc;" />
<p style="font-size: 12px; color: #666;">
Ce message a été envoyé via le formulaire de contact du site public.
</p>
{{end}}