order Confirmation
 

order Information

 

{% if billing_address.name %}

Dear {{ billing_address.name }},

Thank you for placing your order with {{ shop_name }}!

This email is to confirm your recent order placed on {{ date | date: "%m/%d/%Y" }}{% if requires_shipping and shipping_address %}

 

Shipping Address

{{ shipping_address.name }}
{{ shipping_address.street }}
{{ shipping_address.city }}
{{ shipping_address.province }} {{ shipping_address.zip }}
{{ shipping_address.country }} 

Billing Address

{{ billing_address.name }}
{{ billing_address.street }}
{{ billing_address.city }}
{{ billing_address.province }} {{ billing_address.zip }}
{{ billing_address.country }} 

{% endif %} 

{% for line in line_items %}

Items in your Order

Sneak Peek Description Quantity
{{ line.title }}

Price: {{ line.price | money }}

{{ line.quantity }}
{% endfor %}

order summary

{% if discounts %}

Discounts : {{ discounts_savings | money_with_currency }}

{% endif %}

Subtotal : {{ subtotal_price | money_with_currency }}

{% for tax_line in tax_lines %}

{{ tax_line.title }} : {{ tax_line.price | money_with_currency }}

{% endfor %} {% if requires_shipping %}

Shipping : {{ shipping_price | money_with_currency }}

{% endif %}

Total : {{ total_price | money_with_currency }}

You will receive a confirmation email when items from your order have been shipped.

{% endif %}

Thank you for ordering from {{ shop_name }}!

Please contact one of our customer service representatives at ghettintimates@gmail.com if you have any questions about this order.