Please help I am trying to send a custom message to my customers who purchased an order. This custom code block is supposed to show their name and a default item. For some reason when I send the email as a test the image of the item does not load even though I can see it in the code inspector. Also, I am not sure if I am accessing the customer data correctly. Here are some snippets of what my code looks like, thank you.
{% assign default_product = all_products['bath-ball-filter'] %}
{% assign customer_name = recipient.name %}
## {{ customer_name }}, You Might Also Like:
### {{ default_product.title }}
{{ default_product.price | money }}
Shop Now