I want to send an email, that includes a graph generated on a Dash server. I followed steps described here: https://plot.ly/python/email-reports/
The problem is that the graph is rendered dynamically, based on query params I pass in the URL, as a result my email report does’t contain an image snapshot of the graph
E.g. my url looks like this:
localhost:8080/app?foo=bar&baz=bax
The dash app parses the query params (foo, bar, baz, bax) and uses them to construct a query to a database. The data returned from the database is used to construct a graph.
Any ideas how to solve this problem?