Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Is it possible to send email from a Scriptrunner using gmail SMTP?

Razvan Padurean
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
April 18, 2019

I am trying to implement a script and run it with Scriptrunner that sends an email using the gmail SMTP.

I tried several script examples I found online, most of them from the Atlassian Community, but none worked (I received compilation errors about missing classes).

I know that with a script one cannot send an email using the SMTP of Atlassian, as this is not a SMTP. This is why i was thinking in using the gmail SMTP.

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Peter-Dave Sheehan
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.
April 30, 2019

If you want to bypass the jira email system altogether, you'll need to import some smtp  or mail handler class.

At this point, you're dealing with standalone groovy/java and you'll have better luck with generic forums rather than jira/atlassian specific ones.

Quick google got this as first hit: https://gist.github.com/quchie/3e02c5d5df8de804e8e0

Razvan Padurean
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
May 1, 2019

Hi Peter!

 

Thanks a lot for your answer!

What you suggest is exactly what I tried, but didn't manage, as I got the error message something that the imports are not found.

Having Jira in Cloud and having these problems, made me ask about this in the Atlassian Community.

Peter-Dave Sheehan
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.
May 2, 2019

I don't have access to a cloud instance, but does scriptrunner with cloud support grapes?

It looks like the javax.mail is available in a public maven library

You can try this

import javax.mail.*
import javax.mail.internet.*
@Grapes(
@Grab(group='javax.mail', module='mail', version='1.4'
)

It may not work the very first time since it takes a bit of time to download the library in the cache. 

TAGS
AUG Leaders

Atlassian Community Events