You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello,
I'm trying to do some awesome automations with my Finance team for Invoices.
So let me start with a bit of workflow
User raises an invoice ticket on the Finance Service Desk, then attaches a PDF of the invoice. It foes through the standard Finance workflow, then gets approved. Now comes the fun part, after it gets approved, Jira sends an automatic email to our system that reviews the PDF/photo and then makes it all good for Finance to process it, however the automation I've created is not actually attaching the PDF to this email it's just sending the actual commands in the automation (they are below)is there a way that I can get automations to push the actual document via email?
Automation command used:
Any Attachments:- <ul>
{{#issue.attachment}}
<li><a href="{{content}}">{{filename}}</a></li>
{{/issue.attachment}}
</ul>
Thanks,
Renato
Hi @Renato Osorio ,
Can you please try with below code.
{{#issue.attachment}}
{{content}}
{{/issue.attachment}}
With this, you will be able to see the attachment link like below.
Thanks,
Avinash
Hi Avish,
I tried this, but when it goes onto our platform called Dext it then puts the comment as the link and as a PDF
Any ideas?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Renato Osorio ,
Seems like it is not possible to copy the attachment for rule. I see couple of tickets in Atlassian for improvement.
https://codebarrel.atlassian.net/browse/AUT-1030
https://jira.atlassian.com/browse/JRACLOUD-75991
Thanks,
Avinash
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.