Files
MyClub/templates/emails/newsletter.html
T
Tomáš Dvořák 12cba639b9 upload
2025-10-16 13:32:05 +02:00

16 lines
612 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{{define "content"}}
<h2>{{.Subject}}</h2>
<div style="background-color: #f8f9fa; padding: 20px; border-radius: 5px; margin: 20px 0;">
{{.Content | safeHTML}}
</div>
<p>Děkujeme, že odebíráte náš newsletter. Vaší podpory si velmi vážíme!</p>
<p style="font-size: 12px; color: #6c757d; margin-top: 30px;">
Tento email jste obdrželi, protože odebíráte náš newsletter.
<br>
Pokud si již nepřejete emaily dostávat, můžete se <a href="{{.UnsubscribeURL}}" style="color: #2d74da;">odhlásit z odběru</a>.
</p>
{{end}}