Can I get email notifications when a DAG start running?

I want to trigger an email whenever my DAG start running.

Yes, the easiest way to do that would be to add an email operator task to the beginning of your dag. This way an email would be sent whenever your dag starts. Here is guide on how to use the email operator. But note the import for the email operator has changed from airflow.operators.email_operator to airflow.operators.email according to airflow docs.

1 Like