Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save omarieclaire/3bef9109adc2f9ef1080 to your computer and use it in GitHub Desktop.
Save omarieclaire/3bef9109adc2f9ef1080 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 that your order {{ order_name }} with {{ shop_name }} has been fulfilled.<br /><br />
<p>In most cases, this means that your order has been shipped. However, if you selected <em>Put aside</em> or <em>Local Pickup Kitchener-Waterloo</em> it means that we have put your order aside. If you selected <em>Local Pickup Toronto </em> it means that we have packaged it into the next box bound for Toronto. To read about these experimental shipping options, <a href="http://distro.weirdcanada.com/pages/faq">click here.</a></p><br />
<center><b><p>If you have any questions, comments or concerns, <a href="http://goo.gl/Gbl1E7">please get in touch.</a></p></b></center><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