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 Team, I would like to set up automation where if anyone creates an issue, I get an email with a link to the story in the email.
I think I just need to use the Send Email Action, but how would I include the URL for the story in the email body.
Thank you.
All I did was add {{issue.url}} to my automation when issue created, send email and it sends me a clickable link. Works. Thank you
Hello @Cyril James
Is there a reason you want to do this with Automation rather than a filter subscription?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you. I am not sure why. :-).
With automation, I did set up email notification and it works. It does send me an email when anyone creates a story on my board. I like it but it does not include a link to the story, just the issue ID.
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.
If you choose to use an Automation Rule for this, you can use smart values to add information about the issue to the email content.
https://support.atlassian.com/cloud-automation/docs/what-are-smart-values/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes! I was trying to do this but was not getting the syntax correct. I like this because its instant notification.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Do you have the correct syntax now?
If not, please show us what you have so we can help you correct it.
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.
Do I just paste a smart value into the Content section of the email that I am setting up. Would it be {{issue.link}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you are trying to insert into the email the key (i.e. ABC-123) of the issue that triggered the rule you would paste into the email Content field {{issue.key}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you! Placing issue.key only provides the issue name, not a URL that can be clicked..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This page talks about the smart values available under the {{issue}} object.
https://support.atlassian.com/cloud-automation/docs/jira-smart-values-issues/
There is not a "link" smart value. You could manually construct it in your email content thus
https://<yourURL>.atlassian.net/browse/{{issue.key}}
Substitute the appropriate value for your Jira system into <yourURL>
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.