|
|
|
Order summary
|
{% for line in line_items %}
|
{{ line.quantity }} x {{line.title }} (sku: {{ line.sku }})
|
{% endfor %} {% if fulfillment_aborted %}
|
The above order was not automatically fulfilled because it was flagged as a risk for fraud.
|
{% endif %} {% if has_high_risks? %}
|
Security check: This order has a risk of being fraudulent. Review the order in your store's admin and contact the customer to verify their information.
|
{% endif %}
|
Payment processing method: {{ gateway | capitalize }}
|
{% if requires_shipping %}
|
Delivery method: {% for shipping_method in shipping_methods %} {{ shipping_method.title }} {% endfor %}
|
{% endif %}
|
{% if shipping_address %}
|
Shipping address:
|
|
{% if shipping_address.name %}
|
{{ shipping_address.name }}
|
{% endif %} {% if shipping_address.street %}
|
{{ shipping_address.street }}
|
{% endif %} {% if shipping_address.province or shipping_address.city or shipping_address.zip %}
|
{{ shipping_address.province }}, {{ shipping_address.city }} {{ shipping_address.zip }}
|
{% endif %} {% if shipping_address.country %}
|
{{ shipping_address.country }}
|
{% endif %} {% if shipping_address.phone %}
|
Phone: {{ shipping_address.phone }}
|
{% endif %} {% endif %}
|
|