Is there any way to personalize variable into delivery(Email/SMS)?
Because i am only able to personalize attribute.
Solved! Go to Solution.
Hi Sakthikumar,
Yes, it is possible.
If you have an instance variable created on a workflow say instance.vars.xxx you will have to do the following:
Another possible way is to use an Enrichment to add this variable value as a targetData element of the outgoing transition. This way you can make use of targetData personalization blocks.
Hope this helps.
Regards,
Vipul
Hi Sakthikumar,
Yes, it is possible.
If you have an instance variable created on a workflow say instance.vars.xxx you will have to do the following:
Another possible way is to use an Enrichment to add this variable value as a targetData element of the outgoing transition. This way you can make use of targetData personalization blocks.
Hope this helps.
Regards,
Vipul
Its working fine now.
Thank you Vipul Raghav
Views
Replies
Total Likes
Hi Vipul,
I followed your steps, i am generating the instance.vars.test in the initialization script and assigning it to the delivery variable devtest like below:
instance.vars.test = devtest; (devtest is the variable i created in the delivery properties section)
devtest variable value is always coming up as blank in the email delivery.
any thoughts??
Views
Replies
Total Likes
Hi Vipul,
I've read your answer and I found it very interesting. But I'm not very accustomed to the use of variables is the initialization script, and I don't find how to assign a value to the delivery variable defined.
What's the syntax to use ?
I tried a lot of syntaxes like these :
task.eventVariables.NomPrp = vars.NomPrp
activity.scenario.variables.NomPrp = vars.NomPrp
activity.scenario.variables.NomPrp.stringValue = vars.NomPrp
task.eventVariables = <eventVariables
NomPrp = {vars.NomPrp}
/>
var variables = <variables
NomPrp = {vars.NomPrp}
/>
activity.scenario.variables = variables
Could you help me with the syntax to use ?
Thanks a lot in advance
Céline
Views
Replies
Total Likes