But i didn't manage to use the condition in typoscript.
I want to change the subject a an email depending on the button pressed, and tried the following:
subject = COA
subject.1 = TEXT
subject.1.value = New Customer Request
if {
1 {
conditions.OR1.AND1 = step-2-next|trial
isTrue {
3 {
subject.2 = TEXT
subject.2.value = Trial
}
}
else {
subject.2 = TEXT
subject.2.value = Order
}
}
}
which doesn't work. How do I have to use the condition correctly in that case?