Hi, If this is something you're doing on many deliveries, you may be better served using a post-processing workflow, service provider workflow template, or offline workflow to record the ID's. Thanks,-Jon
Hi, You'd have to develop a custom extension.I've made similar for Splunk and Logstash, it's just xtk:queryDef SOAP calls for the most part. Thanks,-Jon
Hi, As the error states, 'like' isn't supported in internal expressions.JS you'd want to return input.match('text').A safer way of checking content is via a control typology rule, as you can check interpolated content and the security's not in the UI. Thanks,-Jon
Hi, Folders are just a folder-id col on the tables, they can be assigned arbitrarily.Nothing will stop you from adding a non-WF to a WF folder, besides the console UI.Non-WF objects won't show in the folder since it's querying the table of its type, essentially 'select * from xtkworkflow where folde...
Hi, Simplest way is to use file export/import for both.The tracking log is just a list of id's and timestamps, you'll probably need to collect peripheral metadata as well, and also recompute aggregations computed from the table. Thanks,-Jon
Hi, Easiest way is to iterate over the workflows in the campaign, parsing each's data field with new XML() and spooling the conditions with an xpath selector. Thanks,-Jon
Hi, The <script/> tag is rendered client-side, and immediately stripped by every email client since its invention.If you're trying to use a server-side include, those are unavailable to the MTA process.You can include JS with personalization blocks (I usually do this), or by eval()'ing response from...