Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Send requests from mail

Pumper1 January 22, 2018

Hi,

I wont to put into mails  wich are send from my jira button which will perform transition. For example, user is assignee for 3 issue, and this user get mail with this button. When he click this button must be performed transition on all 3 issues. The questions is:
1) How i can get all issues where this user is assignee?
2) How i can create this button whith this functions?

Maybe I can do it with JavaScript? 

1 answer

0 votes
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 22, 2018

Hello,

1. You need to add a transition in the workflow and add a post-function called  Send a custom email. 

2. You need to get all issues for the user and pass it to a map so that you can read the map in your email template. Your code would be something like this

def findIssues(String jqlQuery) {


def issueManager = ComponentAccessor.issueManager

def user = ComponentAccessor.jiraAuthenticationContext.user

def jqlQueryParser = ComponentAccessor.getComponent(JqlQueryParser.class)

def searchProvider = ComponentAccessor.getComponent(SearchProvider.class)

def query = jqlQueryParser.parseQuery(jqlQuery)

def results = searchProvider.search(query, user, PagerFilter.unlimitedFilter) results.issues.collect { issue -> issueManager.getIssueObject(issue.id) }

}

def user = ComponentAccessor.jiraAuthenticationContext.user

def jqlQuery = "assignee = " + user.getName()

config.userIssues = findIssues(jqlQuery)

 

You can find an example here

https://scriptrunner.adaptavist.com/latest/jira/builtin-scripts.html#_additional_configuration_in_emails

 

Pumper1 January 22, 2018

thanks, but how i create a button?

Suggest an answer

Log in or Sign up to answer
TAGS
atlassian, loom, loom for training, loom for teaching, video training, async learning, online education, screen recording, loom tutorials, loom use cases, atlassian learning, team training tools, instructional video, virtual training tools

🛗 Elevate Your Training and Enablement with Loom

Join us June 26, 11am PT for a webinar with Atlassian Champion Robert Hean & Loom’s Brittany Soinski. Hear tips, stories, and get your burning questions answered. Learn how Loom makes training and enablement easier. Don’t miss it!

Register today
AUG Leaders

Atlassian Community Events