77 lines
1.3 KiB
HTML
77 lines
1.3 KiB
HTML
subject = "Potvrzení doručení zprávy z kontaktního formuláře"
|
|
==
|
|
|
|
Dobrý den,
|
|
|
|
posíláme potvrzení přijetí vaší zprávy odeslané z kontaktního formuláře.
|
|
|
|
{% if fields|length %}
|
|
Vyplnil/a jste toto:
|
|
|
|
<table border="0">
|
|
|
|
<tbody>
|
|
|
|
{% for field in fieldsDetails %}
|
|
|
|
{% if field.label == 'form_description' or field.label == 'form_alias' %}
|
|
{% else %}
|
|
|
|
<tr>
|
|
<th style="vertical-align: top; text-align: left; padding-right: 10px;">{{ field.label }}</th>
|
|
<td style="text-align: left;">{{ field.value|raw|nl2br }}</td>
|
|
</tr>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{% endif %}
|
|
|
|
|
|
S pozdravem,
|
|
|
|
Kontaktní formulář
|
|
|
|
|
|
==
|
|
|
|
<p>Dobrý den,</p>
|
|
|
|
<p>posíláme potvrzení přijetí vaší zprávy odeslané z kontaktního formuláře.</p>
|
|
|
|
{% if fields|length %}
|
|
|
|
<br>
|
|
|
|
<p>Vyplnil/a jste toto:</p>
|
|
|
|
<table border="0">
|
|
|
|
<tbody>
|
|
|
|
{% for field in fieldsDetails %}
|
|
|
|
<tr>
|
|
<th style="vertical-align: top; text-align: left; padding-right: 10px;">{{ field.label }}</th>
|
|
<td style="text-align: left;">{{ field.value|raw|nl2br }}</td>
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{% endif %}
|
|
|
|
<br>
|
|
|
|
<p>S pozdravem,<br>
|
|
|
|
Kontaktní formulář</p>
|