1.8.6. Tag 'email' (up)


电子邮件 标签允许您自定义传出电子邮件的标头,且仅在电子邮件模板中可用。

有几个方便的子标签,如 ccsubject (请参见下表),但您也可以使用 header 子标签为邮件设置任意 SMTP 标头。

子标签

描述

示例

subject

动态主题

{% subject = 'Greetings from Example company!' %}

cc

抄送

{% cc = 'boss@example.com' %}

bcc

秘密抄送

{% bcc = 'all@example.com' %}

from

实际发送者

{% from = 'system@example.com' %}

reply-to

 

{% reply-to = 'support@example.com' %}

header

自定义 SMTP 标头

{% header 'X-SMTP-Group' = 'Important' %}

do_not_send

丢弃电子邮件

{% do_not_send %}

Example:有条件的秘密抄送

{% email %}
  {% if plan.system_name == 'enterprise' %}
     {% bcc 'marketing@world-domination.org' %}
  {% endif%}
{% endemail %}

Example:完全禁用电子邮件

{% email %}
  {% do_not_send %}
{% endemail %}

Example:注册电子邮件过滤器

{% email %}
  {% if plan.system == 'enterprise' %}
    {% subject = 'Greetings from Example company!' %}
    {% reply-to = 'support@example.com' %}
  {% else %}
    {% do_not_send %}
  {% endif %}
{% endemail %}
Red Hat logoGithubRedditYoutubeTwitter

学习

尝试、购买和销售

社区

关于红帽文档

通过我们的产品和服务,以及可以信赖的内容,帮助红帽用户创新并实现他们的目标。

让开源更具包容性

红帽致力于替换我们的代码、文档和 Web 属性中存在问题的语言。欲了解更多详情,请参阅红帽博客.

關於紅帽

我们提供强化的解决方案,使企业能够更轻松地跨平台和环境(从核心数据中心到网络边缘)工作。

© 2024 Red Hat, Inc.