Email notifications can be sent when a DAG finished with an error or
successfully. To do so, you can set the smtp
field and related fields
in the DAG specs. You can use any email delivery services (e.g.
Sendgrid, Mailgun, etc).
# Email notification settings
mailOn:
failure: true
success: true
# SMTP server settings
smtp:
host: "smtp.foo.bar"
port: "587"
username: "<username>"
password: "<password>"
# Error mail configuration
errorMail:
from: "[email protected]"
to: "[email protected]"
prefix: "[Error]"
# Info mail configuration
infoMail:
from: "[email protected]"
to: "[email protected]"
prefix: "[Info]"
If you want to use the same settings for all DAGs, set them to the
base configuration
{.interpreted-text role=“ref”}.