Last active
November 16, 2019 17:36
-
-
Save aawgit/19fc7498a84c123007a317c011d5b357 to your computer and use it in GitHub Desktop.
Sending e mail notifications with Apache Airflow
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from airflow import DAG | |
from airflow.operators.email_operator import EmailOperator | |
t1 = EmailOperator( | |
task_id="send_mail", | |
to='[email protected]', | |
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