Private
Public Access
1
0
Files
rowsandall/rowers/templates/contactformemail.html
2023-11-07 17:49:49 +01:00

25 lines
286 B
HTML

{% extends "emailbase.html" %}
{% block body %}
<p>New Contact Form Message</p>
<p>
From: {{ firstname }} {{ lastname }}
</p>
<p>
Email: {{ email }}
</p>
<p>
Subject: {{ subject }}
</p>
<p>
{{ message }}
</p>
<p>
Best Regards, the Rowsandall Team
</p>
{% endblock %}