Skip to content

Instantly share code, notes, and snippets.

@aawgit
Last active November 16, 2019 17:36
Show Gist options
  • Save aawgit/19fc7498a84c123007a317c011d5b357 to your computer and use it in GitHub Desktop.
Save aawgit/19fc7498a84c123007a317c011d5b357 to your computer and use it in GitHub Desktop.
Sending e mail notifications with Apache Airflow
from airflow import DAG
from airflow.operators.email_operator import EmailOperator
t1 = EmailOperator(
task_id="send_mail",
to='receiver@mail.com',
subject='Test mail',
html_content='<p> You have got mail! <p>',
dag=dag)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment