The email templates, esp. order confirmation and updates, should contain thumbnails of the lineitems. The mediaId is saved in lineItem.coverId.
I have tried to solve it with the **searchMedia() **function
{# search for media in database #}
{% set media = searchMedia([lineItem.coverId], context.context) %}
{# extract mediaentity object #}
{% set mediaEntity = media.get(lineItem.coverId) %}
{# get url #}
{% set mediaUrl = mediaEntity.getUrl() %}
{{mediaUrl}}
The problem seems to be that the context isn’t existing in the mail templates. Also, there is an empty output when I am using {{ dump() }} ; although the environment is set to DEV mode
Do you have any ideas how to solve this?
How do you include the images? Or how do you get the image url?
{% set id = lineItem.coverId %}
{% set mediaCollection = searchMedia([id], context) %}
{% set mediaImage = mediaCollection.get(id) %}
{% for item in mediaImage.thumbnails.elements %}
{% if item.width == 190 %}
<img src="{{ item.url }}">
{% endif %}
{% endfor %}
I dumped it inside my base.html.twig. To test and look around. I got it to work there with sw_thumbnails. But got an [object Promise] error. So I looked further in the information my dump gave me and came up with this solution. You can replace the 190 with any other thumbnail resoulution your shop gives you.