Skip to content

Instantly share code, notes, and snippets.

@omarieclaire
Last active December 9, 2015 15:53
Show Gist options
  • Save omarieclaire/63e7a378a2585bd0cfda to your computer and use it in GitHub Desktop.
Save omarieclaire/63e7a378a2585bd0cfda to your computer and use it in GitHub Desktop.
<center><img src="https://cdn.shopify.com/s/files/1/0250/7563/files/WDLOGO.jpg?332" height="120" style=align="middle";"/></center>
<p>I'm writing to confirm your order {{ order_name }} with {{ shop_name }} on {{ date | date: "%Y/%m/%d" }}. <a href="http://goo.gl/Gbl1E7">Click here to contact us with questions, comments or concerns.</a></p><br />
<p><strong>Order Details</strong></p>
<ul style="list-style-type:none"> {% for line in line_items %} <li> {{ line.quantity }} x {{ line.title }} for {{ line.price | money }} (each) </li> {% endfor %}
</ul>
<br />
<ul style="list-style-type:none">
{% if discounts %} <li>Discounts : {{ discounts_savings | money_with_currency }}</li> {% endif %}
<li>Subtotal : {{ subtotal_price | money_with_currency }}</li>
{% for tax_line in tax_lines %} <li>Tax : {{ tax_line.title }} : {{ tax_line.price | money_with_currency }} </li>
{% endfor %}
{% if requires_shipping %}
<li>Shipping : {{ shipping_price | money_with_currency }}</li>{% endif %}
<li>Total : {{ total_price | money_with_currency }}</li></ul><br />
<p><strong>Shipping Notes?</strong></p> {{ shipping_method.title }}<br /><br />
{% if requires_shipping and shipping_address %}
<p><b>Shipping address</b><br />
{{ shipping_address.name }}<br />
{{ shipping_address.street }}<br />
{{ shipping_address.city }}, {{ shipping_address.province }}, {{ shipping_address.zip }}<br />
{{ shipping_address.country }}</li></p><br />
{% endif %}
{% if billing_address %}
<p><b>Billing address</b><br />
{{ billing_address.name }}<br />
{{ billing_address.street }}<br />
{{ billing_address.city }}, {{ billing_address.province }}, {{ billing_address.zip }}<br />
{{ billing_address.country }}</p>
{% endif %}
</div>
<p>Thanks so much!</p><br />
<em>Wyrd Distro Volunteer Team</em><br /><br />
<center><p>Wyrd Distro: a nonprofit, volunteer-run, curated offering of Canadian art.<br />distro.weirdcanada.com<br />
<img src="https://cdn.shopify.com/s/files/1/0250/7563/files/Leaf.jpg?338" height="20" style=align="middle";"/></center>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment