Custom email notification body

Artem Khvorov January 30, 2017

Hello. My objective is to call external REST api, get the response and then send it via EMAIL notification after issue creation .What is the most convinient way to do this ?

I want to create some sort of auto-replies on JIRA ticket.
Scenario:

1) User have created issue

2) I catch subject and then make rest call to my api which will generate a response

3) send this response via email to the reporter 

2 answers

0 votes
Artem Khvorov January 31, 2017

Is there a way to call external API from Velocity template ? I mean we need data from external API actually before rendering so we could insert response into template as a plain text

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
January 30, 2017

There are two approaches in your question.  You open with a call to REST, which implies something externally polling JIRA for data, but then the auto-reply stuff all implies JIRA triggering something in a remote system.

The second option is probably better, as it's reacting to user activity, not relying on a scrape or cycling process.

However, the most simple way to do this is actually "use JIRA".  Set up a notification scheme that emails the reporter on the "issue created" event.  That's all you need really, as they'll get an issue created email.  You could also amend the templates to make that type of email more suited to your organisation/process
 
However, if you still need external processing, then I'd write something that could read incoming email, process it, and send mail back to the user independently.  For the incoming data, you do much the same as the "mail reporter" I mentioned above, but have it mail your external box so your service can read, process and send on the mail you want.

Artem Khvorov January 30, 2017

You could also amend the templates to make that type of email more suited to your organisation/process


Is there a way to call external API from Velocity template ? I mean we need data from external API actually before rendering so we could insert response into template as a plain text

Suggest an answer

Log in or Sign up to answer