Created
March 28, 2013 18:18
-
-
Save gterrill/5265571 to your computer and use it in GitHub Desktop.
Standard Order Notification Template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{ 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