22 lines
929 B
HTML
22 lines
929 B
HTML
{% extends 'emails/base_email_template.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "New Public Inquiry" %}{% endblock %}
|
|
{% block preheader %}{% trans "A new public inquiry has been submitted via the website." %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<p style="margin: 0 0 20px;">
|
|
{% trans "A new public inquiry has been received. Details are below." %}
|
|
</p>
|
|
|
|
<p style="margin: 0 0 5px;"><strong>{% trans "Reference:" %}</strong> {{ reference_number }}</p>
|
|
<p style="margin: 0 0 5px;"><strong>{% trans "From:" %}</strong> {{ name }}</p>
|
|
<p style="margin: 0 0 5px;"><strong>{% trans "Subject:" %}</strong> {{ subject }}</p>
|
|
<p style="margin: 0 0 5px;"><strong>{% trans "Message:" %}</strong></p>
|
|
<p style="margin: 0 0 20px;">{{ message }}</p>
|
|
|
|
<p style="margin: 0; font-size: 14px; color: #666666;">
|
|
{% trans "Please review this inquiry and respond to the sender at your earliest convenience." %}
|
|
</p>
|
|
{% endblock %}
|