Thank you for your order. Please retain this receipt for your records.
{% block email_html_order_details %}
{# BEGIN EMAIL TWIG TEMPLATE #}
{% if not is_updateinfo %}
{% if has_downloadables %}
{{ lang.email_html_downloadable_products|raw }}
{{ html_downloadable_links|raw }}
{% endif %}
{{ lang.email_html_order_summary|raw }}
- {{ lang.email_order_number|raw }}: {{ order_id }}
- {{ lang.checkout_date|raw }}: {{ checkout_date }}
{% if purchase_order != '' %}
- {{ lang.checkout_purchase_order|raw }}: {{ purchase_order }}
{% endif %}
{% if payment_type == 'plastic' %}
- {{ lang.checkout_card_number|raw }}: {{ cc_number_masked }} ({{ cc_type }})
{% endif %}
- {{ lang.email_order_total|raw }}: {{ order_total }}
{% if has_live_rate_shippable_products and not has_multiship %}
- {{ lang.email_shipping|raw }}: {{ shipping_service_description }}
{% endif %}
{% for custom_field in custom_fields %}
- {{ custom_field.name }}: {{ custom_field.value }}
{% endfor %}
{% endif %}
{{ lang.email_html_purchasing_information|raw }}
{{ lang.email_email|raw }}:
{{ email }}
{{ lang.email_billing_address|raw }}:
{{ first_name }} {{ last_name }}
{% if company != '' %}
{{ company }}
{% endif %}
{{ address1 }}
{% if address2 != '' %}
{{ address2 }}
{% endif %}
{{ city }}, {{ region_code }} {{ postal_code }}
{{ country_name }}
{% if geoip_html != '' %}
{{ geoip_html }}
{% endif %}
{% if phone != '' %}
{{ phone }}
{% endif %}
{% for multiship in multiship_data %}
{{ lang.email_ship_to|raw }}: {{ multiship.address_name }}
{{ multiship.first_name }} {{ multiship.last_name }}
{% if multiship.company != '' %}
{{ multiship.company }}
{% endif %}
{{ multiship.address1 }}
{% if multiship.address2 != '' %}
{{ multiship.address2 }}
{% endif %}
{{ multiship.city }}, {{ multiship.region_code }} {{ multiship.postal_code }}
{{ multiship.country_name }}
{% if multiship.phone != '' %}
{{ multiship.phone }}
{% endif %}
{% for custom_field in multiship.custom_fields %}
{% if not custom_field.is_hidden %}
{{ custom_field.name }}: {{ custom_field.value }}
{% endif %}
{% endfor %}
{{ lang.email_subtotal|raw }}: {{ multiship.sub_total }}
{% if has_live_rate_shippable_products %}
{{ multiship.shipping_service_description }}: {{ multiship.shipping_total }}
{% else %}
{% if has_shippable_products %}
{{ shipping_and_handling_label }}: {{ multiship.shipping_total }}
{% endif %}
{% endif %}
{{ lang.email_tax|raw }}: {{ multiship.tax_total }}
{{ lang.email_group_total|raw }}: {{ multiship.total }}
{% endfor %}
{% if use_alternate_shipping_address and has_shippable_products %}
{{ lang.email_shipping_address|raw }}:
{% if use_alternate_shipping_address %}
{{ shipping_first_name }} {{ shipping_last_name }}
{% if shipping_company != '' %}
{{ shipping_company }}
{% endif %}
{{ shipping_address1 }}
{% if shipping_address2 != '' %}
{{ shipping_address2 }}
{% endif %}
{{ shipping_city }}, {{ shipping_region_code }} {{ shipping_postal_code }}
{{ shipping_country_name }}
{% if shipping_phone != '' %}
{{ shipping_phone }}
{% endif %}
{% else %}
{{ first_name }} {{ last_name }}
{% if company != '' %}
{{ company }}
{% endif %}
{{ address1 }}
{% if address2 != '' %}
{{ address2 }}
{% endif %}
{{ city }}, {{ region_code }} {{ postal_code }}
{{ country_name }}
{% if geoip_html != '' %}
{{ geoip_html }}
{% endif %}
{% if phone != '' %}
{{ phone }}
{% endif %}
{% endif %}
{% endif %}
{% if subscriptions|length > 0 %}
{{ lang.email_html_manage_subscriptions|raw }}
{{ lang.email_html_subscription_instructions|raw }}
{% for subscription in subscriptions %}
-
{{ subscription.description }}
{{ subscription.html_links|raw }}
{% endfor %}
{% endif %}
{# END EMAIL TWIG TEMPLATE #}
{% endblock %}
{% if not is_updateinfo %}
{% block email_html_cart %}
{# BEGIN CART TWIG TEMPLATE #}
{% if not for_email %}
{% endif %}
{% if with_controls %}
|