Can Scriptrunner email handler - add incoming email as an attachment to an existing issue according the issue number in the subject
Hi @Noam Lugasi
I have a doubt to clarify i.e. are you trying to add the incoming email as an attachment to the issue?
If yes, there is an existing example in the Adaptavist Library.
I hope this helps to answer your question. :-)
I am looking forward to your feedback.
Thank you and Kind regards,
Ram
Thank you for the answer, the example shows how to create an issue from incoming mail.
we don't want to create issues from incoming emails.
the issue already exists, there is no need to create them.
we would like to be able to read the subject of the email (the issue number is in the subject) and attach that incoming mail to the issue that is in the subject of the incoming mail.
example, subject has the IMSUP-23453 issue number, we would like to add the incoming mail to that same issue as an attachment.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Noam Lugasi
Thank you for getting back and providing your clarification.
For your requirement, you can try something like this:-
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.config.util.JiraHome
import com.atlassian.jira.issue.attachment.CreateAttachmentParamsBean
import com.atlassian.jira.service.services.file.FileService
import com.atlassian.mail.MailUtils
import javax.mail.Message
import javax.mail.Session
import javax.mail.internet.InternetAddress
import javax.mail.internet.MimeBodyPart
import javax.mail.internet.MimeMessage
import javax.mail.internet.MimeMultipart
//This requires the name of the user that will trigger the Mail Handler
final def username = 'admin'
//This requires the Project's Key that will be used for the Mail Handler
final def projectKey = 'MOCK'
//This requires the temporary file name. The file name should end with the .eml extension
final def temporaryAttachmentFileName = 'tempMail.eml'
//This requires the actual file name. The file name should end with the .eml extension
final def actualAttachmentFileName = 'SampleMail.eml'
//This requires the hostname for IMAP / POP server that is being used
final def mailHost = 'imap.google.com'
//This requires the Email Port that is being used
final def port = '993'
def projectManager = ComponentAccessor.projectManager
def issueManager = ComponentAccessor.issueManager
def attachmentManager = ComponentAccessor.attachmentManager
def jiraHome = ComponentAccessor.getComponent(JiraHome)
def userManager = ComponentAccessor.userManager
def user = userManager.getUserByName(username)
def subject = message.subject as String
def from = message.from.join(',') as String
def to = message.allRecipients.join(',') as String
def messageBody = MailUtils.getBody(message) as String
def project = projectManager.getProjectByCurrentKey(projectKey)
def issues = issueManager.getIssueObjects(issueManager.getIssueIdsForProject(project.id))
def destination = new File(jiraHome.home, FileService.MAIL_DIR).absoluteFile
def file = new File("${destination}/${temporaryAttachmentFileName}")
file.createNewFile()
def out = new FileOutputStream(file)
def emailContent = createMessage(from, to, subject, messageBody, mailHost, port)
emailContent.writeTo(out)
issues.each {
if (subject.contains(it.key)) {
def attachmentParams = new CreateAttachmentParamsBean.Builder("${destination}/${file.absoluteFile.name}" as File, actualAttachmentFileName, '', user, it).build()
attachmentManager.createAttachment(attachmentParams)
}
}
file.delete()
static Message createMessage(String from, String to, String subject, String content, String mailHost, String port) {
def properties = System.properties
properties.setProperty('mail.smtp.host', mailHost)
properties.setProperty('mail.smtp.port', port)
def session = Session.getDefaultInstance(properties)
def msg = new MimeMessage(session)
def body = new MimeBodyPart()
def multipart = new MimeMultipart()
msg.setFrom(new InternetAddress(from))
msg.setRecipient(Message.RecipientType.TO, new InternetAddress(to))
msg.setSubject(subject)
body.setText(content)
multipart.addBodyPart(body)
msg.setContent(multipart)
msg
}
Please note that the working sample code above is not 100% exact to your environment. Hence, you will need to make the required modifications.
The function of the code is almost the same as the sample code available in the Adaptavist Library, except that instead of creating a new issue, it just converts the email into a *.eml file and adds it as an attachment to the existing issue.
Below is a screenshot of the output:-
I hope this helps to solve your question. :-)
Thank you and Kind regards,
Ram
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Noam Lugasi
Does the solution I have provided answer your question?
If yes, please accept the answer.
Thank you and Kind regards,
Ram
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry, I hadn't had the time to test it yet, but why is there a mail server config in the script, does it not use the email server from the incoming mail server?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Noam Lugasi
In your last comment, you asked:-
Sorry, I hadn't had the time to test it yet, but why is there a mail server config in the script, does it not use the email server from the incoming mail server?
The email server is not related to your incoming mail server.
It is required to configure the parameters of the Message object so that it can be saved as an email file, i.e. the *.eml file and added as an attachment to the ticket.
Without these parameters, the Message object cannot be created. It will return an exception, and you will not be able to save it as an attachment.
Thank you and Kind regards,
Ram
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.