dosubot[bot] commented on issue #31616: URL: https://github.com/apache/superset/issues/31616#issuecomment-2561822013
<!-- Answer --> I found a similar unsolved discussion regarding an issue with the "Add Alert" form in Superset, which might be related to your problem. You can check it out here: [Error in Add Alert form when upgrading to version 4.0.1](https://github.com/apache/superset/discussions/28611) <sup>[[1]](https://github.com/apache/superset/discussions/28611)</sup>. To address the "email keeps spinning" issue when configuring alerts in the latest-dev version of Superset using Chrome, ensure the following configurations are correctly set in your `superset_config.py`: 1. **Enable the Feature Flag**: Make sure the `ALERT_REPORTS` feature flag is set to `True`. ```python FEATURE_FLAGS = { "ALERT_REPORTS": True } ``` 2. **Configure SMTP Settings**: Ensure your SMTP settings are correctly configured for email notifications. ```python SMTP_HOST = 'your_smtp_host' SMTP_STARTTLS = True SMTP_SSL = False SMTP_USER = 'your_smtp_user' SMTP_PORT = 587 SMTP_PASSWORD = 'your_smtp_password' SMTP_MAIL_FROM = '[email protected]' ``` 3. **Disable Dry-Run Mode**: Set `ALERT_REPORTS_NOTIFICATION_DRY_RUN` to `False` to start receiving email notifications. ```python ALERT_REPORTS_NOTIFICATION_DRY_RUN = False ``` These configurations should help resolve the issue with the email notification feature in Superset <sup>[[2]](https://github.com/apache/superset/blob/master/docs/docs/configuration/alerts-reports.mdx)</sup>. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* --- <sup>Help Dosu learn! Give it feedback: [Great Response](https://app.dosu.dev/response-feedback/02248b36-2e68-4740-a008-06dcb62ee782?feedback_type=great_response) | [Irrelevant Answer](https://app.dosu.dev/response-feedback/02248b36-2e68-4740-a008-06dcb62ee782?feedback_type=irrelevant_answer) | [Incorrect Sources](https://app.dosu.dev/response-feedback/02248b36-2e68-4740-a008-06dcb62ee782?feedback_type=incorrect_sources) | [Too Verbose](https://app.dosu.dev/response-feedback/02248b36-2e68-4740-a008-06dcb62ee782?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/02248b36-2e68-4740-a008-06dcb62ee782?feedback_type=hallucination) | [Other](https://app.dosu.dev/response-feedback/02248b36-2e68-4740-a008-06dcb62ee782?feedback_type=other)</sup> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
