Hello,
as the query says, im trying to fins a way to set an option without using setOption() since it does not work in personalization blocks. Anyone facing same issue and found a way/workaround to make it work?
Thanks
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @PabloNeruda,
You can call the Option value in Delivery's script tab and follow the steps mentioned in this thread to call the variable in delivery's personalization block.
Script to enter in Delivery's script tab:
delivery.variables._var[0].stringValue= getOption (optionName);
Hi @PabloNeruda,
You can call the Option value in Delivery's script tab and follow the steps mentioned in this thread to call the variable in delivery's personalization block.
Script to enter in Delivery's script tab:
delivery.variables._var[0].stringValue= getOption (optionName);
Thank you very much, i ll try this way.