Order {{ order.name }}

{% if delivery_method.instructions != blank %}          Delivery to        {% else %}          Ship to        {% endif %}

{% if shipping_address != blank %}          {{ shipping_address.name }}          {% if shipping_address.company != blank %}            <br>            {{ shipping_address.company }}          {% endif %}          <br>          {{ shipping_address.address1 }}          {% if shipping_address.address2 != blank %}            <br>            {{ shipping_address.address2 }}          {% endif %}          {% if shipping_address.city_province_zip != blank %}            <br>            {{ shipping_address.city_province_zip }}          {% endif %}          <br>          {{ shipping_address.country }}          {% if shipping_address.phone != blank %}            <br>            {{ shipping_address.phone }}          {% endif %}        {% else %}          No shipping address        {% endif %}

Bill to

{% if billing_address != blank %}          {{ billing_address.name }}          {% if billing_address.company != blank %}            <br>            {{ billing_address.company }}          {% endif %}          <br>          {{ billing_address.address1 }}          {%  if billing_address.address2 != blank %}            <br>            {{ billing_address.address2 }}          {% endif %}          {% if billing_address.city_province_zip != blank %}            <br>            {{ billing_address.city_province_zip }}          {% endif %}          <br>          {{ billing_address.country }}        {% else %}          No billing address        {% endif %}

Order {{ order.name }}

{{ order.created_at | date: format: "date" }}

ITEMS

Quantity

{% comment %}    To adjust the size of line item images, change desired_image_size.    The other variables make sure your images print at high quality.    {% endcomment %}    {% assign desired_image_size = 58 %}    {% assign resolution_adjusted_size = desired_image_size | times: 300 | divided_by: 72 | ceil %}    {% capture effective_image_dimensions %}      {{ resolution_adjusted_size }}x{{ resolution_adjusted_size }}    {% endcapture %}    {% for line_item in line_items_in_shipment %}
{% if line_item.image != blank %}
style="width: {{ desired_image_size }}px; height: {{ desired_image_size }}px;">

{{ line_item.image | img_url: effective_image_dimensions | img_tag: '', 'aspect-ratio__content' }}

{% endif %}