Supported fields for Cart object:
- Cart.items - array of items in the cart
- Cart.timeStamp
Cart.items is an array of objects representing the items in the cart. Each item has the following properties:
- sku
- name
- price
- desc
- imgUrl
- qty
Inject abandoned cart items into your template using the following syntax:
{{#Cart.items}} {{name}} ({{sku}}) {{desc}} Price: ${{price}} Qty: ${{qty}} {{/Cart.items}}
Example of injecting an abandoned cart into an email template: