I am using Continuous Delivery and trying to access targetData which I have queried in previous activity. However, targetData is not access in delivery template of continuous delivery.
How do I access targetData in delivery template of continuous delivery?
If I use below script in my delivery template, the output is a in below screenshot.
Script:
<%= typeof(targetData) !== 'undefined' ? targetData.productName : "targetData is not defined" %>
<%= typeof(targetData) %>
Output:
Thanks,
Rajasekar J
Solved! Go to Solution.
Views
Replies
Total Likes
The issue could be with the operator used to compare targetData type. I suppose it should be != instead of !==.
Regards,
Poorva
Views
Replies
Total Likes
Hi jrstheandonly ,
I've created a similar setup on my machine and it has worked properly.
I'm able to generate the targetData values inside delivery.
Did you try sending out the email or were you trying to perform preview?
Please provide complete Steps to Reproduce and maybe we can identify the root cause.
Regards,
Vipul
Views
Replies
Total Likes
The issue could be with the operator used to compare targetData type. I suppose it should be != instead of !==.
Regards,
Poorva
Views
Replies
Total Likes
Views
Likes
Replies