You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Morning;
I need send a mail in CLOUD, always in CLOUD please.
I need send a mail in the roles group, when I do a action in service desk.
Is possible to send a mail in CLOUD whit groovy? Cause I try to do, and for me is very complicated and Im new in this world.
Thank's
You can use this :
def resp = post("/rest/api/2/issue/${issueKey}/notify")
.header("Content-Type", "application/json")
.body([
subject: 'Mail title',
textBody: "Body",
htmlBody: "<p>Body</p>",
to: [
users: [[
name: "username",
active: true
]]
groups: [[
name: 'some group'
]]
]
])
.asString()
Please note that you can send an email to jira group(groups) or jira user (users), but please note that you can't get the email if you are the sender.
You can see the example in scriptRunner docs-
And another community question regarding this subject (my question)
I'ts great, thank's, for groups it's fantastic, But I don't have problems except that I need put the group with quotation marks 'group', Do you know why?
And for users I have some problems, Can I do another question? .Is possible that some users, don't send the notification? When all users have mail in their profile. My code is this:
def user= currentUsername //if is scaled put current user
logger.info('usuario-->'+user)
//send mail a user
def resp = post("/rest/api/2/issue/${issueKey}/notify")
.header("Content-Type", "application/json")
.body([
subject: 'Tiene asignada como agente de N2 la Issue - '+ issueKey +' como Grupo Nivel 2',
textBody: "Body",
htmlBody: "<p>Se le asigna a "+user+" grupo N2 esta Issue</p>",
to: [
users: [[
name: user, //I have problems in this point, cause don't send when I put user, but if I pur the user like 'admin', it send a mail without problems
active: true
]]
]
])
.asString()
bol = true
logger.info('usuario-->'+user)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Se puede enviar a varios usuarios definidos? No son del mismo grupo, sino algo así como:
users: [[
name: User 1,
active: true
],
[
name: User 2,
active: true
]
]
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Eduard Diez
Im am trying to write a scriptrunner script for jira cloud that sends custom email.
Can you help me with this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No te entiendo? quieres sumar dos campos en cloud? o que pides?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.