Pack Test
Order {{ order.name }}
{{ order.created_at | date: "%B %e, %Y" }}
Ship to
{% if shipping_address != blank %} {{ shipping_address.name }} {% if shipping_address.company != blank %}
{{ shipping_address.company }} {% endif %}
{{ shipping_address.address1 }} {% if shipping_address.address2 != blank %}
{{ shipping_address.address2 }} {% endif %} {% if shipping_address.city_province_zip != blank %}
{{ shipping_address.city_province_zip }} {% endif %}
{{ shipping_address.country }} {% else %} No shipping address {% endif %}
Bill to
{% if billing_address != blank %} {{ billing_address.name }} {% if billing_address.company != blank %}
{{ billing_address.company }} {% endif %}
{{ billing_address.address1 }} {% if billing_address.address2 != blank %}
{{ billing_address.address2 }} {% endif %} {% if billing_address.city_province_zip != blank %}
{{ billing_address.city_province_zip }} {% endif %}
{{ billing_address.country }} {% else %} No billing address {% endif %}
Items
Quantity
{{ line_item.title }} {% if line_item.variant_title != blank %} {{ line_item.variant_title }} {% endif %} {% if line_item.sku != blank %} {{ line_item.sku }} {% endif %} {% if line_item.properties != blank %} {% for p in line_item.properties %} {% if p.first contains '_io_' %} {% continue %}
{% endif %} {% unless p.last == blank %} {{p.first}}:{{ p.last }}
{% endunless %} {% endfor %} {% endif %}
{{ line_item.shipping_quantity }} of {{ line_item.quantity }}
There are other items from your order not included in this shipment.
{% endunless %}{% if order.note != blank %}
Notes
{{ order.note }}