Placeholders should insert value
Placeholders insert key
1) create ticket object "test" of type "select" with 1 item: key:1 / value:a
2) create trigger with action mail notification
3) insert into body: #{ticket.test}
4) create ticket
5) content of received mail will be "1" and not "a"
Hi there, this new feature has been added to the development branch and will be formally released in version 2.8.0.
With a select attribute named test, #{ticket.test} will work exactly as before: display the key. The newly added syntax #{ticket.test.value} will display the value string associated with that key.
Most helpful comment
Hi there, this new feature has been added to the development branch and will be formally released in version 2.8.0.
With a select attribute named
test,#{ticket.test}will work exactly as before: display the key. The newly added syntax#{ticket.test.value}will display the value string associated with that key.