Are you in the loop? Keep up with the latest by making sure you're subscribed to Community Announcements. Just click Watch and select Articles.

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

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

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

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
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Apr 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

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
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 02, 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