Is it possible to show the preview images in the order confirmation mails?

When using Shopware 6 you may have recognized that the list of articles inside the order confirmation mails sent to your customers only shows the article default images instead of the preview images generated by the designer.

The reason is that the designer will not automatically touch your mail templates. You can easily edit your mail templates on your own in Shopware’s administration area.

Shopware’s article default image will usually be stored in

lineItem.cover.url

The image URL of the preview images generated by the designer plugin will be stored in

nestedItem.payload.productDesignPreviewImageUrls

The image URL of the preview image generated by the designer app will be stored in

lineItem.payload.kilb_product_designer_basket_image_url

So if you want to show the preview image instead of the default cover image you have to add a condition for that.

If you did not yet touch the order confirmation template - so you are using the default one from Shopware - you can add the condition like this:

Find this piece of code:

nestedItem.cover.url

and - in case you are using the designer plugin replace it with :

nestedItem.payload.productDesignPreviewImageUrls[0] ?? nestedItem.cover.url

or - in case you are using the designer app replace it with:

nestedItem.payload.kilb_product_designer_basket_image_url ?? nestedItem.cover.url

This will replace the image in case a preview image is existing. If there’s no preview image existing - which may be the case if the product designer is not configured for the product - the default cover URL will be shown as a fallback.

Don’t forget to save your changes by clicking the Save button. Make sure you do these changes for all languages which are used in your shop.


© Christian Kilb
Saseler Mühlenweg 2
22395 Hamburg

Phone (no support, only legal issues): 0173 / 9763987
E-Mail: contact@cilb.de