Hi Team,
I have requirement to send the jira notification depends on the selection list. Could you please suggest that how to implement this ?
Example , we have Department field with single selection list
If user selects Technology while creating the jria ticket , it should send the jira notification to abc@xxx.com, if user selects Marketing/Sales, it should send the jira notification to aabc@xxx.com
Thanks!
Hi @Lakshmi CH
you could use an Email Issue post-function from JMWE, with a script like this for the "Email addresses" field:
<% switch(issue.get("Department")) {
case "Technology": print "abc@xxx.com"; break
case "Marketing/Sales": print "def@xxx.com"; break
//etc
} %>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.