Solved
How to read ctx inner node values inside an RT Email Template?
Hi All,
Example of my SOAP Push Event payload:
<ctx>
<information>
<paragraph>Lorem Ipsum One</paragraph>
<status>red</status>
</information>
<information>
<paragraph>Lorem Ipsum Two</paragraph>
<status>yellow</status>
</information>
.
.
.
N
</ctx>Inside the RT Email Template, I want to fetch and validate value for node status for each rtEvent.ctx.information and display the value within node paragraph.
For example if status = red, then display "Alert" and so on.
Expected Output:
Lorem Ipsum One - red - Alert
Lorem Ipsum Two - yellow - Warning
and so on