Coverage for airflow.operators.email_operator : 63%
Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
|
""" Sends an email.
:param to: list of emails to send the email to :type to: list or string (comma or semicolon delimited) :param subject: subject line for the email (templated) :type subject: string :param html_content: content of the email (templated), html markup is allowed :type html_content: string :param files: file names to attach in email :type files: list """
self, to, subject, html_content, files=None, *args, **kwargs): super(EmailOperator, self).__init__(*args, **kwargs) self.to = to self.subject = subject self.html_content = html_content self.files = files or []
send_email(self.to, self.subject, self.html_content, files=self.files) |