I want to have company managed projects in Jira Software Cloud send a notification email when a comment has been added to a ticket, but I want to exclude the comment content from that email. Notifications only allow for configuring if a notification is sent, and who it is sent to. I can't find anywhere to manage the templates of the emails that send to take out the comment value.
Can this be done?
Sending the comment content in an email renders the delete comment feature useless.
If a user puts sensitive information on a ticket, I don't want that sending to all the watchers in multiple emails. Additionally, if a crucial mistake is made in a comment or it's placed in the wrong ticket there's no leeway for that user as it's immediately sent.
Based on your requirements, I think you might want to consider removing all the users from the Notification Scheme's Work item commented and configure Automation based on the comment instead, to notify the users when a comment is created with a customized message:
With this approach, it might consume a high amount of Automation usage.
https://support.atlassian.com/cloud-automation/docs/how-is-my-usage-calculated/
Thank you.
You can:
Remove “Issue Commented” from your Notification Scheme.
Create an Automation rule:
Trigger: Issue commented
Action: Send email
Customize the email body (exclude {{comment.body}})
This lets you:
Notify watchers, assignee, etc.
Send a generic message like: "A new comment was added to ISSUE-123. View it in Jira."
⚠️ Limitation:
You must manually specify recipients (e.g., {{issue.watchers.emailAddress}}, {{assignee.emailAddress}}, etc.). It won’t automatically mirror the exact Notification Scheme logic.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Catherine Jarosz
I looked this up, and your conclusion is basically right:
Can you remove the comment body from Jira Software Cloud’s built-in “issue commented” emails?
No. In Jira Cloud (company-managed) you can configure who gets notified (Notification Scheme), but Atlassian explicitly states Jira Cloud does not let you customize the built-in email notifications’ look/feel/content.
So there’s no supported way to keep the native “comment added” notification but strip the comment text from that same email.
The workable approach (what people do in Cloud):
Remove the “Issue commented / Work item commented” event from the project’s Notification Scheme (so Jira stops sending the built-in comment email).
Create an Automation rule:
Trigger: Issue commented
Action: Send email
Write a generic email body and do not include the comment smart value.
Smart values are supported in Automation emails, so you can include issue key/summary/link-like text (without the comment body).
Important limitation (so expectations are set): Automation won’t automatically mirror all the same recipients/rules as your Notification Scheme; you’ll need to define recipients (assignee, reporter, watchers, etc.) yourself.
One extra clarification:
If anyone points you to “editing notification templates”: that’s Jira Service Management customer notifications, which are editable in JSM — but that’s a different feature set than Jira Software’s notification scheme emails.
So: native Jira Software comment emails can’t be stripped, but you can achieve the behavior by turning off that native event and sending a custom Automation email.
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.