As a Carts Guru customer, you can either build an email from our email template editor or ask us to implement one of your HTML templates. You can choose the design you want but you will have to follow some rules so that the template is compliant with our software. Here is the list of variables that you need to implement (speak with your developer first!):
1. Variables regarding general cart information:
- How to display the currency (EX: ‘EUR’, ‘USD”, etc…) => {{basket.currency}}
- How to display the total amount of the cart => {{basket.totalATI}}
- How to use the cart recovery link => {{basket.recoverUrl}}
- How to display your customer’s name => {{contact.firstname}}
- Link so that your customer can unsubscribe => {{email.unsubUrl}}
2.Variables regarding item information:
To display all your item information, you have to add your html inside this tag.
{{#each basket.items as |item itemKey|}}
- How to display the product price => {{item.totalATI}}
- How to display the product quantity inside the cart => {{item.quantity}}
- How to display the product name => {{item.label}}
- How to display the product currency => {{item.currency}}
- How to use the product image url => {{item.imageUrl}}
- How to use the product url => {{item.url}}}
{{/each}}
3.Variables regarding product recommendations:
To display all the product recommendations information, you have to add your html inside this tag.
{{#each basket.similarProducts as |item itemKey|}}
- How to display the product price => {{item.totalATI}}
- How to display the product quantity inside the cart => {{item.quantity}}
- How to display the product name => {{item.label}}
- How to display the product currency => {{item.currency}}
- How to use the product image url => {{item.imageUrl}}
- How to use the product url => {{item.url}}
{{/each}}
Comments
0 comments
Please sign in to leave a comment.