When I use email template (for BPMN send message task) I'm able to reslve variable values using syntax
but I don't get these variables to work in control structures like if or each. I tried:
using
throws:
with no luck. What is the correct syntax to access a variable in a template control expression?
Code:
{$$variableName}
Code:
{{#ifEqual needChanges 1}} {{#ifEqual $$needChanges 1}} {{#ifEqual [{$$needChanges}] 1}}
Code:
{{#ifEqual {$$needChanges} 1}}
Code:
Wrong variable naming as '{$$needChanges}' in {{#ifEqual {$$needChanges} 1}} ! You should wrap ! " # % & ' * + , ; < = > { | } ~ into [ ]
Comment