airflow.operators.email

模块内容

EmailOperator

发送电子邮件。

class airflow.operators.email.EmailOperator(*, to, subject, html_content, files=None, cc=None, bcc=None, mime_subtype='mixed', mime_charset='utf-8', conn_id=None, custom_headers=None, **kwargs)[source]

基类: airflow.models.baseoperator.BaseOperator

发送电子邮件。

参数
  • to (list[str] | str) – 接收电子邮件的电子邮件列表。(模板化)

  • subject (str) – 电子邮件的主题行。(模板化)

  • html_content (str) – 电子邮件的内容,允许使用 HTML 标记。(模板化)

  • files (list | None) – 要在电子邮件中附加的文件名 (模板化)

  • cc (list[str] | str | None) – 要添加到抄送字段的收件人列表

  • bcc (list[str] | str | None) – 要添加到密件抄送字段的收件人列表

  • mime_subtype (str) – MIME 子内容类型

  • mime_charset (str) – 添加到 Content-Type 标头的字符集参数。

  • custom_headers (dict[str, Any] | None) – 要添加到 MIME 消息的其他标头。

template_fields: Sequence[str] = ('to', 'subject', 'html_content', 'files')[source]
template_fields_renderers[source]
template_ext: Sequence[str] = ('.html',)[source]
ui_color = '#e6faf9'[source]
execute(context)[source]

在创建操作符时派生。

上下文是与渲染 Jinja 模板时使用的相同字典。

请参阅 get_template_context 获取更多上下文。

此条目是否有帮助?