sure!
Order {{ order.order_name }}
{% if order.po_number %}PO # {{ order.po_number }}
{% endif %}
{{ "now" | date: "%B %e, %Y" }}
**From**
{{ shop.address | format_address }}
{% if order.shipping_address %}
**Ship to**
{{ order.shipping_address | format_address }}
{% if order.shipping_address.phone %}{{ order.shipping_address.phone }}{% endif %}
{% endif %}
{% for line_item in order.line_items %}
{% endfor %}
{% for discount in order.discounts %}
{% endfor %}
{% if order.shipping_address %}
{% endif %}
{% if order.net_payment != order.total_net_amount %}
{% endif %}
{% if order.total_refunded_amount > 0 %}
{% endif %}
{% if order.net_payment != order.total_net_amount %}
{% endif %}
<table>
<tr>
<th>
Qty
</th>
<th>
</th>
<th>
Item
</th>
<th>
Price
</th>
</tr>
<tr>
<td>
**{% unless line_item.title contains 'Tip' %} {{ line_item.quantity }} x {% endunless %}**
</td>
<td>
{{ line_item.product.featured_image | product_img_url: 'thumb' | img_tag }}
</td>
<td>
{% if line_item.title contains 'Tip' %}
**Thanks for your donation to akt!**
{% else %}**{{ line_item.title}}**
{% endif %}
{{ line_item.sku }}
</td>
<td>
{{ line_item.price | money }}
</td>
</tr>
<tr>
<td colspan="3">
Subtotal
</td>
<td>
{{ order.subtotal_price | money }}
</td>
</tr>
<tr>
<td colspan="3">
Includes discount {% if discount.code %}"{{ discount.code }}"{% endif %}
</td>
<td>
{{ discount.savings | money }}
</td>
</tr>
<tr>
<td colspan="3">
Tax
</td>
<td>
{{ order.tax_price | money }}
</td>
</tr>
<tr>
<td colspan="3">
Shipping **({{ order.shipping_method.title }})**
</td>
<td>
{{ order.shipping_price | money }}
</td>
</tr>
<tr>
<td colspan="3">
**Total**
</td>
<td>
**{{ order.total_price | money }}**
</td>
</tr>
<tr>
<td colspan="3">
Total Paid
</td>
<td>
{{ order.net_payment | money }}
</td>
</tr>
<tr>
<td colspan="3">
Total Refunded
</td>
<td>
{{ order.total_refunded_amount | money }}
</td>
</tr>
<tr>
<td colspan="3">
**Outstanding Amount**
</td>
<td>
**{{ order.total_price | minus: order.net_payment | money }}**
</td>
</tr>
</table>
{% if order.note %}
## Note
{{ order.note }}
{% endif %}
If you have any questions, please send an email to {{ shop.email }}