Dear Community,
I have an simple workflow there the reporter needs to fullfil an excel sheet. Ideally the transition from status A to B will send an email with this sheet as attachment to the reporter.
Any ideas how to archieve? Maybe with scriptrunner? Best would be without any other plugins.
Thanks in advanced.
Kristian
Hi @AccessHolding,
if I'm not wrong (and I often am) I'd say you need a custom scriptrunner email script or you could use the Email this issue add-on: https://marketplace.atlassian.com/apps/4977/email-this-issue?hosting=cloud&tab=overview
JETI can send out recent attachments.
Regarding the archiving: what do you mean by that?
Solution without add-ons: you would have to redirect the user to your Jira issue and open up your Jira to public.
Let me know if this helps somewhat and what your additional thoughts are.
Cheers,
Krisz
I think he means achieve. instead of archiving.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Dave Bosman [Realdolmen] thanks, that does make sense, good point - silly me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the mentioned hints. For scriptrunner itselfs it looks like the custom email function is for configuring attachement rules only or I miss the simple "upload attachement" button. :)
Yes you are right, to add an attachment as a comment for example and just inform the user could be also an option. Looks like this is the way to go for me. Thanks for helping out, which I appreciate.
Best,
Kristian
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @AccessHolding
You can use Script Runner post-function on this transition called "Send custom email" there are option to include attachments added during this transition.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Mark Markov,
This helps me at least for customizing the e-mail even further but where can I upload the attachement when? It seems this area is for setting rules only. Like upload .pdf´s only or to restrict the filesize.
I want to archieve for example that I press the transition action and a custom email with an attachment X will be send automatically. The reporter needs to fullfil this attachment, re-upload and done.
Thanks in advanced.
Kristian
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In this case, for example, you can attach this excel to issue, and create custom callback that will attach files with given name
import com.onresolve.scriptrunner.canned.jira.workflow.postfunctions.MailAttachment
{MailAttachment a -> a.filename.toLowerCase().equals("exeltofill.xls")}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi
We use
com.onresolve.scriptrunner.canned.jira.workflow.postfunctions.MailAttachment
Actually in our Jira instance, but in our plan to upgrade to Jira 8 this script is not working, do you know where we can find the new class for this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The import moved:
import com.onresolve.scriptrunner.canned.jira.workflow.postfunctions.mail.MailAttachment;
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.