Hi everyone,
I know that to configure manually a where condition inside and activity I can use this code to refer to global viariable:
activity.where[0].condition[1].expr = "@language = '" + vars.lang + "'";
I'm wondering if there's a way to check the value with a LIKE command
for IE: if my vars.lang is "en,de,it" and I'd like to select all the recipient who have @language = "en" or "de" or "it".
Thanks a lot!