Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div class="mail2gether-template" >
<div class="mail2gether-template-container">
<div style="font-family:arial; font-size:12px;">

{% set currencyIsoCode = order.currency.isoCode %}

<div class="mail2gether-header">	
	<div class="mail2gether-header-main">	
		<a href=" {{ rawUrl('frontend.account', salesChannel.domains|first.url) }} ">
<img src="https://huwil.de/media/0e/33/5d/1686910575/huwil-logo.jpeg" class="mail2gether-header-logo" width="200px" ></a>	
		<a href="https://huwil.de/checkout/cart">
		<img src="https://huwil.de/media/fb/d6/2e/1697332146/Icon-Warenkorb.jpg" class="mail2gether-icons mail2gether-icon-2">
		<a href="https://huwil.de/account">
		<img src="https://huwil.de/media/63/43/c3/1697332146/Icon-User.jpg" class="mail2gether-icons mail2gether-icon-1"></a>
		
	</div> <!-- Ende: Mail Header main -->
	<div class="mail2gether-header-bottom">	
<a href="https://huwil.de">Startseite</a> | 
<a href="https://huwil.de/moebelschloesser">Möbelschlösser</a> | 
<a href="https://huwil.de/glasbeschlaege">Glasbeschläge</a> | 
<a href="https://huwil.de/moebelbeschlaege/">Möbelbeschläge</a> | 
<a href="https://huwil.de/wk-serie-wilhelm-kessler/">WK-Serie</a> | 
<a href="https://huwil.de/de/kataloge">Kataloge</a> | 
<a href="https://huwil.de/de/huwilkontakt">Kontakt</a>
	</div> <!-- Ende: Mail Header bottom -->
	</div> <!-- Ende: mail-header -->
Hallo {% if order.orderCustomer.salutation %}{{ order.orderCustomer.salutation.translated.letterName ~ ' ' }}{% endif %}{{ order.orderCustomer.firstName }} {{ order.orderCustomer.lastName }},<br>
<br>
Ihre Bestellung ist am {{ order.orderDateTime|format_datetime('medium', 'short', locale='de-DE') }} bei uns eingegangen.<br>
<br>
Bestellnummer: {{ order.orderNumber }}<br>
<br>
Sobald ein Zahlungseingang erfolgt ist, erhalten Sie eine separate Benachrichtigung und Ihre Bestellung wird verarbeitet.<br>
<br>
Den aktuellen Status Ihrer Bestellung können Sie jederzeit über diesen Link abrufen: {{ rawUrl('frontend.account.order.single.page', { 'deepLinkCode': order.deepLinkCode }, salesChannel.domains|first.url) }}<br>
Über diesen Link können Sie auch die Bestellung bearbeiten, die Zahlungsart wechseln oder nachträglich eine Zahlung durchführen.<br>
<br>
<strong>Informationen zu Ihrer Bestellung:</strong><br>
<br>

<table border="0" style="font-family:Arial, Helvetica, sans-serif; font-size:12px;">
    <tr>
        <td bgcolor="#F7F7F2" style="border-bottom:1px solid #cccccc;"><strong>Produkt-Nr.</strong></td>
        <td bgcolor="#F7F7F2" style="border-bottom:1px solid #cccccc;"><strong>Produktbild</strong></td>
        <td bgcolor="#F7F7F2" style="border-bottom:1px solid #cccccc;"><strong>Bezeichnung</strong></td>
        <td bgcolor="#F7F7F2" style="border-bottom:1px solid #cccccc;"><strong>Menge</strong></td>
        <td bgcolor="#F7F7F2" style="border-bottom:1px solid #cccccc;"><strong>Preis</strong></td>
        <td bgcolor="#F7F7F2" style="border-bottom:1px solid #cccccc;"><strong>Summe</strong></td>
    </tr>

    {% 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 %}

                    {% if nestedItem.payload.features is defined and nestedItem.payload.features|length >= 1 %}
                        {% set referencePriceFeatures = nestedItem.payload.features|filter(feature => feature.type == 'referencePrice') %}
                        {% if referencePriceFeatures|length >= 1 %}
                            {% set referencePriceFeature = referencePriceFeatures|first %}
                            <div>
                                {{ referencePriceFeature.value.purchaseUnit }} {{ referencePriceFeature.value.unitName }}
                                ({{ referencePriceFeature.value.price|currency(currencyIsoCode) }}* / {{ referencePriceFeature.value.referenceUnit }} {{ referencePriceFeature.value.unitName }})
                            </div>
                        {% endif %}
                    {% endif %}
                </td>
                <td style="text-align: center">{{ nestedItem.quantity }}</td>
                <td>{{ nestedItem.unitPrice|currency(currencyIsoCode) }}</td>
                <td>{{ nestedItem.totalPrice|currency(currencyIsoCode) }}</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 %}
</table>

<!-- Bankdaten bei Vorkasse -->	
	
	
{% set delivery = order.deliveries.first %}

{% set displayRounded = order.totalRounding.interval != 0.01 or order.totalRounding.decimals != order.itemRounding.decimals %}
{% set decimals = order.totalRounding.decimals %}
{% set total = order.price.totalPrice %}
{% if displayRounded %}
    {% set total = order.price.rawTotal %}
    {% set decimals = order.itemRounding.decimals %}
{% endif %}
<p>
    <br>
    <br>
    {% for shippingCost in order.deliveries %}
        Versandkosten: {{ shippingCost.shippingCosts.totalPrice|currency(currencyIsoCode) }}<br>
    {% endfor %}
    Gesamtkosten Netto: {{ order.amountNet|currency(currencyIsoCode) }}<br>
        {% for calculatedTax in order.price.calculatedTaxes %}
            {% if order.taxStatus is same as('net') %}zzgl.{% else %}inkl.{% endif %} {{ calculatedTax.taxRate }}% MwSt. {{ calculatedTax.tax|currency(currencyIsoCode) }}<br>
        {% endfor %}
    {% if not displayRounded %}<strong>{% endif %}Gesamtkosten Brutto: {{ total|currency(currencyIsoCode,decimals=decimals) }}{% if not displayRounded %}</strong>{% endif %}<br>
    {% if displayRounded %}
        <strong>Gesamtkosten Brutto gerundet: {{ order.price.totalPrice|currency(currencyIsoCode,decimals=order.totalRounding.decimals) }}</strong><br>
    {% endif %}
    <br>

    {% if delivery %}
        <strong>Gewählte Versandart:</strong> {{ delivery.shippingMethod.translated.name }}<br>
        {{ delivery.shippingMethod.translated.description }}<br>
        <br>
    {% endif %}

    {% set billingAddress = order.addresses.get(order.billingAddressId) %}
    <strong>Rechnungsadresse:</strong><br>
    {{ billingAddress.company }}<br>
    {{ billingAddress.firstName }} {{ billingAddress.lastName }}<br>
    {{ billingAddress.street }} <br>
    {{ billingAddress.zipcode }} {{ billingAddress.city }}<br>
    {{ billingAddress.country.translated.name }}<br>
    <br>

    {% if delivery %}
        <strong>Lieferadresse:</strong><br>
        {{ delivery.shippingOrderAddress.company }}<br>
        {{ delivery.shippingOrderAddress.firstName }} {{ delivery.shippingOrderAddress.lastName }}<br>
        {{ delivery.shippingOrderAddress.street }} <br>
        {{ delivery.shippingOrderAddress.zipcode}} {{ delivery.shippingOrderAddress.city }}<br>
        {{ delivery.shippingOrderAddress.country.translated.name }}<br>
        <br>
    {% endif %}
    {% if order.orderCustomer.vatIds %}
        Ihre Umsatzsteuer-ID: {{ order.orderCustomer.vatIds|first }}
        Bei erfolgreicher Prüfung und sofern Sie aus dem EU-Ausland
        bestellen, erhalten Sie Ihre Ware umsatzsteuerbefreit. <br>
    {% endif %}
    <br/>
    Den aktuellen Status Ihrer Bestellung können Sie auch jederzeit auf unserer Webseite im  Bereich "Mein Konto" - "Meine Bestellungen" abrufen: {{ rawUrl('frontend.account.order.single.page', { 'deepLinkCode': order.deepLinkCode }, salesChannel.domains|first.url) }}
    </br>
    Für Rückfragen stehen wir Ihnen jederzeit gerne zur Verfügung.
</p>
<br>
</div>
	
<div class="mail2gether-footer-main">
	
	<a href="https://www.huwil.de/datenschutz">Datenschutz</a> | 
<a href="https://www.huwil.de/agb">AGB</a> | 
<a href="https://www.huwil.de/huwilkontakt">Kontakt</a>
	
</div><!-- Ende: mail2gether-footer-main -->	
</div> <!-- Ende: mail2gether-template-container -->
</div> <!-- Ende: mail2gether-template -->


              
            
!

CSS

              
                .mail2gether-template {
 		background-image: linear-gradient(to bottom,rgba(38,74,160,.2),#fff);
    background-attachment: fixed;
	  font-family: Montserrat, Arial;
 }

.mail2gether-template-container {
		max-width: 800px;
    margin: 0 auto;
		background: #fff;
	  padding: 0 20px;
}

.mail2gether-template .mail2gether-header {
	   width: 100%
}

.mail2gether-template .mail2gether-header .mail2gether-header-main {
	   width: 100%;
}

.mail2gether-template .mail2gether-header .mail2gether-header-logo {
		margin-top: 10px;
}

.mail2gether-template .mail2gether-header .mail2gether-icons {
	 float: right;
	 width: 50px;
}

.mail2gether-template .mail2gether-header .mail2gether-icon-1 {
	margin-top: 10px
}
.mail2gether-template .mail2gether-header .mail2gether-icon-2 {
	margin-top: 14px
}

.mail2gether-template .mail2gether-header .mail2gether-header-bottom, .mail2gether-template .mail2gether-footer-main  {
	background: #264aa0;
	color: #ffffff;
	margin: 10px 0;
	padding: 20px 15px;
	font-size: 14px;
	margin: 10px -20px 20px -20px;
	padding: 15px 25px;
}

.mail2gether-template .mail2gether-header .mail2gether-header-bottom a, .mail2gether-template .mail2gether-footer-main a  {
	color: #fff;
	text-decoration: none;
}


              
            
!

JS

              
                // Version 1.0.0 
// 
// 1. Äußerer DIV Bereich: .mail2gether-template
// - Für Hintergrundfarbe
// 2. Darin eine DIV Klasse: .mail2gether-template-container
// - Zum zentrieren des Inhalts
// 3. Header
// 3.1 Oberer Bereich
// 3.1.1 Verlinktes Logo (Variable)
// 3.1.2 Verlinkte Icons zu Account & Warenkorb (Hard Code)
// 3.1.3 Verlinkte Navigation (Hard Coded)

// 3.1.4 Button zur Bestellung im Account
// 
// 4. Bei Vorkasse Konto ausgeben lassen (mit ID der Zahlart)
//
//
// 5. Footer
// 5.1 Links einbinden: Datenschutz, AGB, Kontakt (Hard)
// 5.2 

              
            
!
999px

Console