Hi All,
Use Case:
I have to send an email to customers who have purchased items. I have to send email with item image links which customers have purchased.
Approach followed:
I have created two schemas for this Order, OrderLineItem. I have followed the below steps in workflow.
- I have queried recent Order records using Query activity.
- Then I have used Enrichment activity to create collection(Size: 3) "itemNameImage" of Order line item and add it to temporary schema. The collection variable itemNameImage holds HTML content like <a href="@productLink"><img src="@productImage"/></a>
- Then I will just add the collection variable "itemNameImage" to the email as dynamic variable.
Issue:
The above approach works fine when each variable itemNameImage in collection holds value whose size is less than 255. When it exceeds size 255, campaign throws error as in screenshot below.

Any help would be great !!