<!-- start -->
<table>
<tr>
<td>Image</td>
<td>Product</td>
<td>Price</td>
<td>Quantity</td>
<td>Total</td>
</tr>
{% for line_item in order.line_items %}
<tr>
<td><img src="{{ line_item.picture }}" /></td>
<td><a href="{{ line_item.url }}">{{ line_item.name }}</a></td>
<td>{{ line_item.price }}</td> <td>{{ line_item.qnt }} pcs</td>
<td>{{ line_item.total }}</td>
</tr>
{% endfor %}
</table>
<b>Sum: {{ order.display_revenue }}</b>
<!-- end -->
<a href="{{line_item.url}}" style="text-decoration: none; color: #006699;">{{ line_item.name }}</a>
<!-- start -->
<table cellpadding="0" cellspacing="0" style="margin: 15px 0; font-size: 15px; line-height: 1.3em;" width="100%">
<tr>
<td colspan="5" style="padding: 0 0 10px 0;">
<h4 style="font-size: 22px; line-height: 1.2em; font-weight: 400; margin: 0; padding: 4px 0;">Ваш заказ</h4>
</td>
</tr>
{% for line_item in order.line_items %}
<tr>
<td colspan="5" style="border-top: 1px solid #e0e0e0;"></td>
</tr>
<tr>
<td valign="middle" width="73" style="padding: 9px 14px 9px 0;">
<a href="{{line_item.url}}">
{% assign line_item_image = line_item.picture %} {% if line_item_image == null %}
{% assign line_item_image = 'https://d2p70fm3k6a3cb.cloudfront.net/public/messages/common/product.jpg' %}
{% endif %}
<img src="{{line_item_image}}" width="73">
</a>
</td>
<td valign="middle" style="padding: 9px 0; font-size: 16px; line-height: 1.3em;">
<a href="{{line_item.url}}" style="text-decoration: none; color: #3e3e3e;">
{{ line_item.name | truncate: 10, '...' }}
</a>
</td>
<td valign="middle" width="140" align="right" style="padding: 9px 0; font-size: 16px; line-height: 1.3em; font-weight: bold; white-space: nowrap;">{{ line_item.price }}</td>
<td valign="middle" width="40" align="right" style="padding: 9px 0; font-size: 16px; line-height: 1.3em; font-weight: bold; white-space: nowrap;">{{ line_item.qnt }} шт</td>
<td valign="middle" width="40" align="right" style="padding: 9px 0; font-size: 16px; line-height: 1.3em; font-weight: bold; white-space: nowrap;">{{ line_item.total }}</td>
</tr>
{% endfor %}
<tr>
<td colspan="5" style="padding: 0 0 10px 0; border-top: 1px solid #e0e0e0;"></td>
</tr>
<tr>
<td colspan="5">
<table cellpadding="0" cellspacing="0" width="100%">
<tr>
<td valign="middle" style="padding: 20px 0;">
<b>Order numberа: {{order.order_id}}</b>
</td>
<td valign="middle" style="padding: 20px 0; text-align: right; color: #30363c; font-size: 16px; line-height: 1.2em; text-align: right;">
<b>Total: {{order.display_revenue}}</b>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- end -->
{% assign encoded_var = "Test" | downcase | md5 %} <p> <a href="http://example.com/?super_param={{encoded_var}}"></a> </p>