Replies: 1 comment
-
|
Superset does not support sending entire dashboards as HTML in emails out of the box—dashboards are sent as screenshots (images), while individual charts with tabular data can be sent as HTML tables in the email body. This is because the report execution logic generates dashboard screenshots using a headless browser, not HTML tables or layouts see details. To customize Superset to send dashboards as HTML, you would need to change the report execution code to, for each dashboard, fetch the tabular data from all its charts, assemble those tables into a single HTML email, and bypass the screenshot generation step. The relevant code for this is in This would require non-trivial code changes: you'd need to extract all chart slices from the dashboard, fetch their data, and render them as HTML tables in the email. There is no built-in configuration or UI option for this. If your dashboards only contain tables, this approach is technically feasible but would require custom development. To reply, just mention @dosu. How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Charts can be send using text (HTML) is there a way to customize superset to do this for dashboards since my dashboards only contain tabular data
Beta Was this translation helpful? Give feedback.
All reactions