Hi there,
Is there a way to auto forward an email received in Jira to an external email address. I know there is an automation rule that can forward with the summary and description but can it also forward any attachments received?
Hi Trudy,
Thank you for this information. I found that this particular answer was not right for what I was looking to set up in my automation rule.
I did find this useful though as I was able to find a work around to this problem.
The goal was to auto forward a received email with attachments that met certain criteria (if and or) to another email address. The issue was that there is no way to forward the actual email at a Jira level. This can be set up at an exchange level but was more complicated. I have found though that using the Send Customised Email function within the automation rule with the following Json code gave me the ability to forward the email with the attachment as a link.
Another issue I wan into was the email format was not in HTML so it did not display correctly. Adding on .html to the code solved this issue. Please see my notes for a work around:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
Welcome to community :)
There is no direct way to do so
The below workaround could help
{{issue.description.replaceAll("![^\s!][^!]+[^\s!]+[!]", " ")}}
Thank You,
Prachi
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Prachi,
Thank you for this information. I managed to find a fix without the need to create a new custom field. However this information was helpful because I was able to apply some of it to the fix.
The goal was to auto forward a received email with attachments that met certain criteria (if and or) to another email address. The issue was that there is no way to forward the actual email at a Jira level. This can be set up at an exchange level but was more complicated. I have found though that using the Send Customised Email function within the automation rule with the following Json code gave me the ability to forward the email with the attachment as a link.
Another issue I ran into was the email format was not in HTML so it did not display correctly. Adding on .html to the code solved this issue. Please see my notes for a work around:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.