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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.