Here's a curly one... should placeholders work within placeholders?
-------------
Use case:
Looking to make a placeholder that selects the right dynamic content based on a the value of a custom field...
Example:
{{dc.{{ticket.ticket_field_30318887}}_contractor_emails}}
----------------
Here's what happens when I test this with the different parts..
-----------
{{dc.contractor_emails_site_1}}
RETURNS: email@email.com
-----------
{{ticket.ticket_field_30314357}}
RETURNS: site_1
-------------
{{dc.contractor_emails_{{ticket.ticket_field_30314357}}}}
RETURNS: }}
DOH!
---------------
Now it gets interesting...
If I use a code block and paste {{dc.contractor_emails_{{ticket.ticket_field_30314357}}}}...
EXPECTED: {{dc.contractor_emails_{{ticket.ticket_field_30314357}}}}
ACTUAL: {{dc.contractor_emails_\{{ticket.ticket_field_30314357}}}}
So something is happening...
Any thoughts?