Hi {{ order.customer_first_name }}, your order has been completed.
ORDER #{{ ORDER.NUMBER }}
Order Completed
Hi {{ order.customer_first_name }}, tracking details for golf gear and gift card orders will be sent directly to your email. Thanks for being a ROAR Plus member!
Order Summary
{% for item in order._items %}
{{ item.name }}
{{ item.options | split: "\n" | join: " " | raw }} {% if item.options and item.options != "" %} {% endif %} Qty: {{ item.qty }}
${{ item.total }}
{% endfor %}
Shipping
${{ order.shipping }}
{% if order.tax > 0 %}
Tax
${{ order.tax }}
{% endif %} {% if order.discount > 0 %}
Discount {% if order.coupon and order.coupon != "" %}({{ order.coupon }}){% endif %}
${{ order.discount }}
{% endif %}
Total
${{ order.total }}
Shipping Address
{{ order.shipping_address.first_name }} {{ order.shipping_address.last_name }}
{{ order.shipping_address.address }} {% if order.shipping_address.complement != "" and order.shipping_address.complement != "" %} {{ order.shipping_address.complement }} {% endif %} {% if order.shipping_address.suburb and order.shipping_address.suburb != "" %} {{ order.shipping_address.suburb }} {% endif %} {% if order.shipping_address.city and order.shipping_address.city != "" %} {{ order.shipping_address.city }} {% endif %} {% if order.shipping_address.state and order.shipping_address.state != "" %} {{ order.shipping_address.state }} {% endif %} {{ order.shipping_address.postcode }}