- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi,
Add vars to the delivery in the Variables tab of the delivery's Properties dialog.
These are available in the workflow and the delivery as delivery.variables._var[] and variables.varname respectively.
Map one to the other in a js activity or the delivery's init script, e.g. after creating properties var named foobar:
Init script: delivery.variables._var[0] = instance.vars.foo;
Then in delivery: <%= variables.foobar %>
Thanks,
-Jon