Skip to content

Instantly share code, notes, and snippets.

@gterrill
Created March 28, 2013 18:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gterrill/5265571 to your computer and use it in GitHub Desktop.
Save gterrill/5265571 to your computer and use it in GitHub Desktop.
Standard Order Notification Template
{{ shop_name }},
{{ billing_address.name }} placed a new order with you today ({{ date | date: "%b %d %I:%M%p" }}).
Payment method:
{{ gateway }}
Delivery method:
{% for shipping_method in shipping_methods %}{{ shipping_method.title }}
{% endfor %}
Shipping address:
{{ shipping_address.name }}
{{ shipping_address.street }}
{{ shipping_address.city }}, {{ shipping_address.province }} {{ shipping_address.zip }}
{{ shipping_address.country }}
{{ shipping_address.phone }}
{% for line in line_items %}{{ line.quantity }}x {{line.title }} (sku: {{ line.sku }})
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment