6 years ago
Kit Contents On Email Templates
It’s now possible to include the kit contents on Veeqo’s email templates. We include:
- product_title
- sellable_title
- product_description
- quantity
Just copy and paste the below onto your email template:
{% for line_item in line_items %}
<strong>{{ line_item.product_title }}:</strong>
{% for kit_content in line_item.contents %}
{{ kit_content.product_title }} {{ kit_content.sellable_title }} (x {{ kit_content.quantity }})
{% endfor %}
{% endfor %}