...
This will allow you to see how your template will render when in use, given the example Preview Context shown on this section.
Preview Context data
...
Code Block |
---|
{
"from": "from@someUser.com",
"fromPersonal": "Johny User",
"recipients": [
"to@aUser.net",
"and@anotherUser.net",
"support@thisCompany.net"
],
"subject": "The subject",
"body": "This is the body with some i18n characters @Техническая проблема= some value",
"bodyFormat": "text",
"timestamp": 1552055974959,
"catchEmailAddresses": [
"support@thisCompany\\.net",
"support.*@anotherCompany\\.net"
],
"matchingRecipient": "support@thisCompany.net",
"matchingCatchEmailAddress": "support@thisCompany\\.net",
"isJiraUser": false
} |
Preview Context data is specific to the context in which your template is used and is available at render time. From the example above we can see that the context for an incoming email shows the address from which the email was sent, and the intended recipients.
...