Hi,I'm currently working on a workflow where a flat file is loaded and
has the following structure:content[{"title": "Title 1", "url":
"url-comes-here"},{"title": "Title 2, "url": "url-comes-here2"}]I do an
enrichment with the profiles and the imported data and pass it to the
delivery.In the delivery, I do the following:<% var content =
JSON.parse(context.content); content.forEach(function(item) { %> <%=
item.title %><% }); %>If I check the "Tracked URLs" section, I
see this:I would expect, if I...