{% capture email_title %}Your shipping status has been updated {% endcapture %}
{% capture email_body %}The following items have been updated with new shipping information.{% endcapture %}
{{ email_title }}
|
{%- if shop.email_logo_url %}
{%- else %}
{%- endif %}
|
ORDER {{ order_name }}
|
|
|
{{ email_title }}
{{ email_body }}
{{ email_emphasis }}
{% if order_status_url %}
{% else %}
{% if shop.url %}
{% endif %}
{% endif %}
|
|
{% assign rows_count = 0 %}
{% for line in fulfillment.fulfillment_line_items %}
{% unless rows_count == 0 %}
|
{% endunless %}
{% capture temp %}{{ num | plus: 1 }}{% endcapture %}
{% assign rows_count = temp %}
{% if line.line_item.image %}
|
{% endif %}
{% if line.quantity < line.line_item.quantity %}
{% capture line_display %} {{ line.quantity }} of {{ line.line_item.quantity }} {% endcapture %}
{% else %}
{% assign line_display = line.line_item.quantity %}
{% endif %}
{{ line.line_item.title }} x {{ line_display }}
{% if line.line_item.variant.title != 'Default Title' %}
{{ line.line_item.variant.title }}
{% endif %}
|
{% endfor %}
{%- if shop.email_logo_url %}
{%- else %}
{%- endif %}
|
If you have any questions, reply to this email or contact us at {{ shop.email }}
|
|
|
|