Skip to main content

Can someone please help me to set the presentment title for abandoned checkout flow dynamic product title?

Hi ​@Biz 

Thank you for posting in the Community!

 

The presentment title will vary from integration to integration, so it all depends on the payload for your event.

If you open the flow and the email template you are currently working in - head to “Preview and test” in the top right corner. Here you can see the most recent events and grab the presentment title variable from the payload. Simply click the presentment title and insert it into your started checkout table. 

Because the table is set to dynamic (in the started checkout event) - you’ll have to edit the variable to item.(...). This make ensure that the table will populate all items that are currently in the cart. 

Here’s and example from a Shopify integration. 

 

In my payload it looks like this:

The variable: {{ event.extra.line_items.0.presentment_title|default:'' }}
To fit the syntax of the cart I’ll edit it to include the item.(...) as mentioned above so it looks like this: {{ item.presentment_title|default:'' }}.

I hope this helps!