Shipment Tracking Code:
{% if fulfillment.item_count == item_count %}
{% capture shipment_name %}Your order is{% endcapture %}
{% elsif fulfillment.item_count > 1 %}
{% if fulfillment_status == 'fulfilled' %}
{% capture shipment_name %}The last items in your order are{% endcapture %}
{% else %}
{% capture shipment_name %}Some items in your order are{% endcapture %}
{% endif %}
{% else %}
{% if fulfillment_status == 'fulfilled' %}
{% capture shipment_name %}The last item in your order is{% endcapture %}
{% else %}
{% capture shipment_name %}One item in your order is{% endcapture %}
{% endif %}
{% endif %}
{% capture email_title %}{{ shipment_name }} on the way{% endcapture %}
{% capture email_body %}{{ shipment_name }} on the way to you. Track your shipment to see the delivery status.{% endcapture %}
{% capture email_emphasis %}Estimated delivery date:
{{fulfillment.estimated_delivery_at | date: "%B %d, %Y"}}{% endcapture %}
{{ email_title }}
{{ email_title }}
{{ email_body }}
{% if fulfillment.estimated_delivery_at %}
{{ email_emphasis }}
{% endif %}
{% if order_status_url %}
{% if shop.url %}
{% endif %}
|
{% else %}
{% if shop.url %}
{% endif %}
{% endif %}
|
|
{% for line in fulfillment.fulfillment_line_items %}
{% if item_count == 1 %}
{% assign columnWrapperClass = 'order-list__item--single' %}
{% elsif forloop.first == true %}
{% assign columnWrapperClass = 'order-list__item--first' %}
{% elsif forloop.last == true %}
{% assign columnWrapperClass = 'order-list__item--last' %}
{% else %}
{% assign columnWrapperClass = '' %}
{% endif %}
{% if line.line_item.image %}
{% endif %}
|
{% if line.line_item.product.title %}
{% assign line_title = line.line_item.product.title %}
{% else %}
{% assign line_title = line.line_item.title %}
{% endif %}
{{ line_title }} × {{ line.line_item.quantity }}
{% if line.line_item.variant.title != 'Default Title' %}
{{ line.line_item.variant.title }}
{% endif %}
{% if fulfillment.tracking_number %}
{% if fulfillment.tracking_url %}
Tracking Number: {{ fulfillment.tracking_number }}
{% elsif fulfillment.tracking_number %}
Tracking Number: {{ fulfillment.tracking_number }}
{% endif %}
{% endif %}
|
|
{% endfor %}
|
|
|
Use left/right arrows to navigate the slideshow or swipe left/right if using a mobile device