Order Confirmation (email sent to customer)


Last updated


Last updated
if line.selling_plan_allocation{% for p in line.properties %}
{% assign property_first_char = p.first | slice: 0 %}
{% unless p.last == blank or property_first_char == '_' %}
<div class="ymq-property">{{ p.first }}:
{% if p.last contains '/uploads/' %}
<div><img src="{{ p.last }}" style="max-width: 50px; height: auto;"></div>
{% else %}
{{ p.last }}
{% endif %}
</div>
{% endunless %}
{% endfor %}