Angebot anfragen



E-Mail Template
Last updated



Last updated
<h2>Kunden-Anfrage in Shop {{salesChannel.name}}</h2>
<h3>Formulardaten</h3>
{%if customerFirstname %}
Vorname: {{customerFirstname}}<br/>
{% endif %}
{%if customerLastname %}
Nachname: {{customerLastname}}<br/>
{% endif %}
{%if customerMailAddress %}
E-Mail: {{customerMailAddress}}<br/>
{% endif %}
{%if customerComment %}
Kommentar: {{customerComment}}<br/>
{% endif %}
<h3>Produkt</h3>
Nummer: {{product.productNumber}}<br/>
Name: {{product.translated.name}}<br/>
<h3>Konfiguration</h3>
{%for field in configuration %}
{{field.label}}: <br/>
{%if field.valueLabel is iterable %}
{%if field.valueLabel.files is defined %}
{%for file in field.valueLabel.files %}
{{file.url}}<br/>
{%endfor %}
{% else %}
{{field.valueLabel|join(",")}}
{%endif %}
{% else %}
{{field.valueLabel}}
{% endif %}
{%endfor %}