Recurring Orders and Product Options Order Confirmation Template - Linked from: https://support.boldcommerce.com/hc/en-us/articles/115005175923-Recurring-Orders-and-Product-Options-Order-Confirmation-Template
<h3 style="float: right; text-align: right; margin: 0;">
Invoice {{ order_name }} </h3>
<div style="float: left; margin: 0 0 1.5em 0;" >
<strong style="font-size: 1.5em;">{{ shop_name }}</strong><br />
</span></div>
<br>
<p>{{date | date:"%d-%b-%Y"}}</p>
<p>
<table width="100%">
<tr>
<td>{% if billing_address %}
<h3 style="margin: 0 0 .5em 0;">Billing Address</h3>
<span class="Textsize"><strong>{{ billing_address.name }}</strong><br/>
{% if billing_address.company %}
{{ billing_address.company }}<br/>
{% endif %}
{{ billing_address.street }}<br/>
{{ billing_address.city }}
{{ billing_address.province_code }}
{{ billing_address.zip | upcase }}<br/>
{{ billing_address.country }}<br/>
{% endif %} </span></td>
<td>{% if shipping_address %}<br>
<h3 style="margin: 0 0 .5em 0;">Shipping Address</h3>
<p class="Textsize"><strong>{{ shipping_address.name }}</strong><br/>
{% if shipping_address.company %}
{{ shipping_address.company }}<br/>
{% endif %}
{{ shipping_address.street }}<br/>
{{ shipping_address.city }}
{{ shipping_address.province_code }}
{{ shipping_address.zip | upcase }}<br/>
{{ shipping_address.country }}<br/>
{% endif %} </p></td>
</tr>
</table>
</p>
<h3 style="margin: 0 0 .5em 0;">Item Details</h3>
<table style="border-collapse: collapse;width: 100%;border: 1px solid #ddd;">
<thead>
<tr>
<th style="padding: 8px; text-align: left; border-bottom: 1px solid #ddd;">Item</th>
<th style="padding: 8px; text-align: left; border-bottom: 1px solid #ddd;">Quantity</th>
<th style="padding: 8px; text-align: left; border-bottom: 1px solid #ddd;">Price</th>
</tr>
</thead>
<tbody>
{% for line in line_items %}
{% assign prop_bold_builder_id = ""%}
{% assign prop_bold_builder_info = ""%}
{% assign prop_bold_master_builder = ""%}
{% assign line_bold_master_builder_id = ""%}
{% assign line_bold_builder_id = "" %}
{% assign exit = 0 %}
{% for p_bold in line.properties %}
{% if p_bold.first == "_builder_id" or p_bold.first == "builder_id" or exit == 0 %}
{% assign exit = 1 %}
{% if p_bold.first == "_builder_id" %}
{% assign prop_bold_builder_id = "_builder_id" %}
{% assign prop_bold_builder_info = "_builder_info" %}
{% assign prop_bold_master_builder = "_master_builder" %}
{% assign line_bold_builder_id = p_bold.last %}
{% elsif p_bold.first == "builder_id"%}
{% assign prop_bold_builder_id = "builder_id" %}
{% assign prop_bold_builder_info = "builder_info" %}
{% assign prop_bold_master_builder = "master_builder" %}
{% assign line_bold_builder_id = p_bold.last %}
{% endif %}
{% endif %}
{% if p_bold.first == "_master_builder" or p_bold.first == "master_builder" or exit == 0 %}
{% assign line_bold_master_builder_id = p_bold.last %}
{%endif%}
{% endfor %}
{% assign item_price = 0 %}
{% assign item_line_price = 0 %}
{% assign price_item_bold_builder_id = "" %}
{% assign price_item_bold_master_builder = "" %}
{% for price_item in line_items %}
{% for p_bold in price_item.properties %}
{% if p_bold.first == prop_bold_builder_id %}
{% assign price_item_bold_builder_id = p_bold.last %}
{%endif%}
{% if p_bold.first == prop_bold_master_builder %}
{% assign price_item_bold_master_builder = p_bold.last %}
{%endif%}
{% endfor %}
{% if price_item_bold_builder_id != "" %}
{% if price_item_bold_builder_id == line_bold_builder_id %}
{% assign temp_item_price = price_item.price %}
{% assign temp = item_price | plus: temp_item_price %}
{% assign item_price = temp %}
{% endif %}
{% endif %}
{% endfor %}
{% assign item_line_price = item_price | times: line.quantity %}
{% if line_bold_builder_id != blank %}
{% if line_bold_master_builder_id != blank %}
<tr>
<td class="Textsize" style="padding: 8px; text-align: left; border-bottom: 1px solid #ddd;"><b>{{ line.title }}</b><br />
{% for p in line.properties %}
{% assign underscore_exists = p.first | slice: 0,1 %}
{% if underscore_exists != "_"%}
{% if p.first == prop_bold_builder_id or p.first == prop_bold_builder_info or p.first == prop_bold_master_builder or p.last == "" %}{% else %}
{% unless p.last == blank or p.first == '_extra_variants' or p.first == '_extra_price' %}
{{ p.first }}: <em>{{ p.last }}</em><br />
{% endunless %}
{% endif %}
{% endif %}
{% endfor %}
{{ line_item.sku }}</td>
<td class="Textsize" style="padding: 8px; text-align: left; border-bottom: 1px solid #ddd;">{{ line.quantity }} x {% if line_bold_master_builder_id == blank %}{{line.price | money}}{% else %}{{item_price | money}}{% endif %}</td>
<td class="Textsize" style="padding: 8px; text-align: left; border-bottom: 1px solid #ddd;">{% if line_bold_master_builder_id == blank %}{{ line.line_price | money }}{% else %}{{item_line_price | money}}{% endif %}</td>
</tr>
{%endif%}
{%else%}
<tr>
<td class="Textsize" style="padding: 8px; text-align: left; border-bottom: 1px solid #ddd;"><b>{{ line.title }}</b><br />
{% for p in line.properties %}
{% assign underscore_exists = p.first | slice: 0,1 %}
{% if underscore_exists != "_" or p.last == "" %}
{% unless p.last == blank %}
{{ p.first }}: <em>{{ p.last }}</em><br />
{% endunless %}
{%endif%}
{% endfor %}
{{ line_item.sku }}</td>
<td class="Textsize" style="padding: 8px; text-align: left; border-bottom: 1px solid #ddd;">{{ line.quantity }} x {{line.price | money}}</td>
<td class="Textsize" style="padding: 8px; text-align: left; border-bottom: 1px solid #ddd;">{{ line.line_price | money }}</td>
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>
<br>
<h3 style="margin: 0 0 .5em 0;">Payment Details</h3>
<table class="Textsize" style="margin: 0 0 1.5em 0;">
<tr>
<td width="240">Subtotal price:</td>
<td width="256">{{ subtotal_price | money }}</td>
</tr>
{% for discount in discounts %}
<tr>
<td>Includes discount "{{ discount.code }}"</td>
<td>{{ discount.savings | money }}</td>
</tr>
{% endfor %}
<tr>
<td>Total tax:</td>
<td>{{ tax_price | money }}</td>
</tr>
{% if shipping_address %}
<tr>
<td>Shipping: {{ shipping_method.title }}</td>
<td>{{ shipping_price | money }}</td>
</tr>
{% endif %}
<tr>
<td><strong>Total price:</strong></td>
<td><strong>{{ total_price | money }}</strong></td>
</tr>
{% if total_paid != total_price %}
<tr>
<td><strong>Total paid:</strong></td>
<td><strong>{{ total_paid | money }}</strong></td>
</tr>
<tr>
<td><strong>Outstanding Amount:</strong></td>
<td><strong>{{ total_price | minus: total_paid | money }}</strong></td>
</tr>
{% endif %}
</table>
{% if note %}
<h3 class="Textsize" style="margin: 0 0 1em 0;">Note</h3>
<p class="Textsize">{{ note }}</p>
<p class="Textsize">{% endif %}</p>
<p class="Textsize">If you have any questions, please contact us: <u>{{ shop.email }}</u> | <b>{{shop.phone}}</p><br><br>