25 lines
286 B
HTML
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 %}
|