Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions airflow-core/docs/howto/email-config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,14 @@ Follow the steps below to enable it:
email_conn_id = aws_default
from_email = From email <email@example.com>

Equivalent environment variables looks like

.. code-block::

AIRFLOW__EMAIL__EMAIL_BACKEND=airflow.providers.amazon.aws.utils.emailer.send_email
Comment thread
ferruzzi marked this conversation as resolved.
AIRFLOW__EMAIL__EMAIL_CONN_ID=aws_default
AIRFLOW__EMAIL__FROM_EMAIL=email@example.com

Note that for SES, you must configure from_email to the valid email that can send messages from SES.

3. Create a connection called ``aws_default``, or choose a custom connection
Expand Down