I want to send a list of the open tickets to a specific email address each week. I have a filter that gets me the list.
I can export the results of the filter as a CSV file, but that doesn't get emailed.
I can create a subscription that emails the results of the filter, but the list is put in the body of the email as a table (html, I assume).
How do I automatically email results of the filter as a CSV file attached to the email each week?
Hi @Sean Martin 👋
That’s a great question — and it’s a very common one!
Unfortunately, Jira’s native filter subscriptions can only send the results as an HTML table in the email body, not as a CSV file attachment.
But there are a few practical workarounds depending on how automated you want the process to be 👇
Option 1) Marketplace app (easiest & reliable way)
You can use apps like:
These apps can schedule reports and send your filter results as a CSV or Excel file attachment automatically.
Example setup in Better Excel Exporter:
Every week, your team receives the report as a CSV attachment via email.
Option 2) Automation for Jira + external mail service (semi-custom)
If you prefer to stay fully native:
However, Jira Automation currently can’t attach files —
if you really need CSV attachments, you can extend it with a webhook to tools like Zapier, Make (Integromat) or Google Apps Script, which can turn the lookup data into a CSV and send it as an email attachment.
Option 3) Custom Script (for technical users)
Using the Jira REST API, you can:
This gives full control, but it’s best suited if you already have some scripting setup.
But to be honest, If you dont have to export as CSV, a customizable mail will cover the situation I guess.
For example: (sorry for its in my native language 😊)
Hope that helps clarify the options! 🚀
Hey @Sean Martin Jira Cloud doesn’t currently support emailing a filter as a CSV attachment, filter subscriptions only send an HTML table in the email body. Here’s what you can do instead:
Option A – Use a Marketplace app (fastest, no-code)
Several reporting/export apps can schedule emails with file attachments. For example:
Better Excel Exporter for Jira Cloud – lets you email a saved filter on a schedule as an Excel file (often fine instead of CSV).
Better PDF Exporter – if you’re okay with PDF output.
Other “automated export” or “scheduler” apps on the Marketplace that explicitly mention CSV attachments.
These tools typically let you pick a filter, set a weekly schedule, specify recipients, and send the report automatically.
Option B – Automation + external service (no app, some setup)
If you must have CSV and prefer not to use an app:
Create a scheduled Jira automation rule (weekly) that runs your filter using Lookup issues.
Add a Send web request action to call your own webhook (e.g. via Zapier, Make, or a lightweight script).
The webhook uses Jira’s REST API (/rest/api/3/search
) to fetch results, convert to CSV, and email the file through your mail service.
It takes a bit of setup, but it’s reliable and gives you full control.
Hope one of these options will fit!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Sean,
Welcome to the community :)
Presently, there is no option to customise this while setting up the subscription. The predefined format is the table that we receive in email
https://jira.atlassian.com/browse/JRACLOUD-96401 - Feature request for the same.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.