{% assign lighter_gradient_color = "#00C6FF" %}
{% assign darker_gradient_color = "#0072FF" %}
{% capture email_title %}New order{% endcapture %}
{% capture email_body_intro %}Hello {{ shop_name }},{% endcapture %}
{% capture email_body_text %}{{ customer.name | default: "Someone" }} placed a new order with your store on {{ date | date: "%b %d at %I:%M %p" }}.{% endcapture %}
{% capture intro_text_color %}#FFFFFF{% endcapture %}
{% capture button_label %}View order {{order_name}} →{% endcapture %}
{% capture button_color %}#FFFFFF{% endcapture %}
{% capture order_items_heading_text %}Items ordered{% endcapture %}
{{ email_title }}
|
{%- if shop.email_logo_url %}
{%- else %}
{%- endif %}
|
|
|
|
{{ email_body_intro }}
{{ email_body_text }}
|
{% if fulfillment_aborted %}
|
This order was flagged as suspicious and was not automatically fulfilled.
|
|
{% endif %}
{% if has_high_risks? %}
Security check:
This order has a risk of being fraudulent. Review the order and contact the customer to verify their information.
|
|
{% endif %}
|
|
|
{{ order_items_heading_text }}
|
|
{% for line in line_items %}
{% if line.product.title %}
{% assign line_title = line.product.title %}
{% else %}
{% assign line_title = line.title %}
{% endif %}
{% if line.image %}
|
{% endif %}
{{ line_title }}
{% if line.product.description %}
{{ line.product.description }}
{% endif %}
|
x{{ line.quantity }} |
{% if line.original_line_price != line.line_price %}
{{ line.original_line_price | money }}
{% endif %}
{{ line.line_price | money }}
|
|
|
{% endfor %}
{% if shipping_address or billing_address or shipping_method %}
{% if requires_shipping and shipping_address %}
Shipping address
{{ shipping_address.name }}{% if shipping_address.company %} {{ shipping_address.company }}{% endif %}
{{ shipping_address.address1 }}
{{ shipping_address.address2 }}
{{ shipping_address.city }}, {{ shipping_address.province }}
{{ shipping_address.zip }}
{{ shipping_address.country }}
{% if shipping_address.phone %} Phone: {{ shipping_address.phone }}{% endif %}
|
{% endif %}
{% if requires_shipping and shipping_address %}
Delivery method
{% for shipping_method in shipping_methods %}
{{ shipping_method.title }}
{% endfor %}
|
{% endif %}
Payment method
{{ gateway }}
|
|
|
{% endif %}
{% if shopify_shipping_enabled %}
{% endif %}