Set email notification

Configure email notifications in config.yaml for Maestro Cloud. Default sends on failure only; add onSuccess for successful runs.

Configure Maestro Cloud to send email summaries for your Flow results.

circle-info

Maestro Cloud Plan required Email notifications are available on the Maestro Cloud Planarrow-up-right.

Configure email recipients

To receive email notifications, add the notifications mapping to your config.yaml file. This file should be located in the root of your workspace (usually the .maestro folder).

Notify on failure (Default)

By default, Maestro Cloud sends emails only when a Flow fails. Add the following to your config.yaml:

# .maestro/config.yaml
notifications:
  email:
    enabled: true
    recipients:
      - [email protected]
      - [email protected]

Notify on success and failure

If you want to receive notifications for successful runs as well, add onSuccess: true:

# .maestro/config.yaml
notifications:
  email:
    enabled: true
    onSuccess: true # Enable on sucess notification
    recipients:
      - [email protected]

Example email notification

When a Flow fails, recipients receive an email containing a summary of the test run and a link to the detailed report in the Maestro Dashboard.

Check the other notification options available when testing your app with Maestro Cloud:

Last updated