Varianten in Bestellbestätigungsemail WIE

Hallo,

ich möchte gerne Farbe und Größe in der eMail Bestätigung mit drin haben.
Bei mir fehlt das. Ich habe aber keine Ahnung wo ich die korrekten Variablen dafür finde
kann mir jemand helfen was hier daazu muss damit Größe und Farbe mit aufgeführt wird?
Als text:

  {{ nestedItem.label|u.wordwrap(80) }}

    Position: {{ loop.index }}
    Artikel Nr.: {% if nestedItem.payload.productNumber is defined %}{{ nestedItem.payload.productNumber|u.wordwrap(80) }}{% endif %}
    Menge: {{ nestedItem.quantity }}
    Preis: {{ nestedItem.unitPrice|currency(currencyIsoCode) }}
    Summe: {{ nestedItem.totalPrice|currency(currencyIsoCode) }}

{% endblock %}

und in HTML:

Position:
Artikel Nr.:
Menge:
Preis:
Summe:

Besten Dank

Teste bitte mal (mit Integration der options)

{% for lineItem in order.nestedLineItems %}
    {% set nestingLevel = 0 %}
    {% set nestedItem = lineItem %}
    {% block lineItem %}
        <tr>
            <td>{% if nestedItem.payload.productNumber is defined %}{{ nestedItem.payload.productNumber|u.wordwrap(80) }}{% endif %}</td>
            <td>{% if nestedItem.cover is defined and nestedItem.cover is not null %}<img src="{{ nestedItem.cover.url }}" width="75" height="auto"/>{% endif %}</td>
            <td>
                {% if nestingLevel > 0 %}
                    {% for i in 1..nestingLevel %}
                        <span style="position: relative;">
                            <span style="display: inline-block;
                                position: absolute;
                                width: 6px;
                                height: 20px;
                                top: 0;
                                border-left:  2px solid rgba(0, 0, 0, 0.15);
                                margin-left: {{ i * 10 }}px;"></span>
                        </span>
                    {% endfor %}
                {% endif %}

                <div{% if nestingLevel > 0 %} style="padding-left: {{ (nestingLevel + 1) * 10 }}px"{% endif %}>
                    {{ nestedItem.label|u.wordwrap(80) }}
                </div>
                
                {% if nestedItem.payload.options is defined and nestedItem.payload.options|length >= 1 %}
                <div>
                    {% for option in nestedItem.payload.options %}
                        {{ option.group }}: {{ option.option }}
                        {% if nestedItem.payload.options|last != option %}
                            {{ " | " }}
                        {% endif %}
                    {% endfor %}
                </div>
            {% endif %}
            </td>
            <td style="text-align: center">{{ nestedItem.quantity }}</td>
            <td>{{ nestedItem.unitPrice|currency(currencyIsoCode) }}</td>
            <td>{{ nestedItem.totalPrice|currency(currencyIsoCode) }}</td>
        </tr>
        <tr>
            <td colspan="6" style="border-bottom: 1px solid #cccccc;"></td>
        </tr>
        {% if nestedItem.children.count > 0 %}
            {% set nestingLevel = nestingLevel + 1 %}
            {% for lineItem in nestedItem.children %}
                {% set nestedItem = lineItem %}
                {{ block('lineItem') }}
            {% endfor %}
        {% endif %}
    {% endblock %}
{% endfor %}
Produkt-Nr. Produktbild Bezeichnung Menge Preis Summe

Moin Danke,

aber es ist alles beim alten. Ist das nicht eigentlich normal dass das übertragen wird und es komisch dass es fehlt? wie ist das denn bei euch anderen so?

Grüße