# Angebot anfragen

Die "Angebot anfragen" kann optional in den Grundeinstellungen einer jeden Konfiguration aktiviert werden.&#x20;

<figure><img src="/files/9JQqd4pADwZnIt6QdGoy" alt=""><figcaption><p>Mit der Variable {{config('core.basicInformation.email')}} wird die Mailadresse des Verkaufskanals eingetragen.</p></figcaption></figure>

Bei aktiver "Angebot anfragen"-Funktion erscheint ein Button unter dem Warenkorb-Button.

<figure><img src="/files/prt7zsH35gxEefNY5yt6" alt=""><figcaption></figcaption></figure>

Klickt der Kunde auf den Button, kann er zusätzliche Details eingeben. Beim Absenden der Anfrage wird eine Mail an die in der Konfiguration hinterlegte Mailadresse(n) gesendet. Das Mailtemplate lässt sich frei bearbeiten.

<figure><img src="/files/0oiLDsKjH5P39Eo2Nvpc" alt=""><figcaption></figcaption></figure>

### E-Mail Template

Das  Mailtemplate wird bei der Installation des Konfigurators wird unter dem Name\
**Angebot-Anfrage (neonlines Konfigurator)** angelegt.

{% code title="HTML-Template" %}

```twig
 <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 %}
```

{% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.neonlines.de/artikel-konfigurator/weitere-funktionen/angebot-anfragen.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
