metafield in email

metafield in email

LittlePaddocks
Excursionist
45 1 9

Hi, does anyone know of a way to insert the image from an order metafield into a notification email.

 

Many thanks

Replies 2 (2)

EcomGraduates
Shopify Partner
858 71 124

The metafield should store the image URL as the value. 

Select the notification you want to edit (e.g., order confirmation, shipping confirmation).

for example 

 

{% if order.metafields.custom.image_url %}
  <img src="{{ order.metafields.custom.image_url }}" alt="Order Image">
{% endif %}

 

 

 

 

Replace custom with the correct metafield namespace and image_url with the key of your metafield.

 


 If this fixed your issue, likes and accepting as a solution are highly appreciated
|  Build an online presence with our custom-built Shopify Theme: EcomifyTheme
|  Check out our reviews: Trustpilot Reviews
|  We are Shopify Partners: EcomGraduates Shopify Partner



LittlePaddocks
Excursionist
45 1 9

Hi @EcomGraduates , thank you for your help with this. 

 

I have added the code into my email, but am getting this...

 Screenshot 2024-12-21 at 17.52.27.png

 

Any ideas how to get the image to display?

 

Many thanks!