Forums

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

Sending email via script runner in Confluence Cloud

체험공유 August 1, 2023

I want to send email to all member when confluence page is updated or created.

but it was hard to find script example.

Please tell me sending email on the confluence cloud with script runner.

if there is another solution besides script-runner please tell me!

Thanks!

 

#scriptrunner

 

1 answer

0 votes
Nic Brough -Adaptavist-
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.
August 1, 2023

Welcome to the Atlassian Community!

The examples here are for Jira, but the "send email" code will work with Confluence (and Bitbucket) too - have a skim through https://docs.adaptavist.com/sr4jc/latest/features/script-listeners/script-listener-examples

체험공유 October 19, 2023

Hi thanks for the answer. but your link is for the Jira. 

Could you just give me "Sending email with scriptrunner on Confluence cloud" example?

Nic Brough -Adaptavist-
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.
October 19, 2023

Again, the example is for Jira, but will work with Confluence.

Like 체험공유 likes this
체험공유 October 21, 2023

@Nic Brough -Adaptavist- 

hi thanks for the reply

I tried, but failed.. :(

I don't know what to write in the post part..

Is there api for confluence to send email?

 

def resp = post("/wiki/rest/api/content/{id}")
.header("Content-Type", "application/json")
.body([
subject: 'Priority Increased',
textBody: "textMessage",
htmlBody: "<p>htmlMessage</p>",
to: [
watchers: true,
voters: true,
users: [[
name: '체험공유'
]],
groups: [[
name: 'allmember'
]]
]
]).asString()

assert resp.status == 204

 

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
FREE
TAGS
AUG Leaders

Atlassian Community Events