{# /** * @file * Default theme implementation for a summary of a form email handler. * * Available variables: * - settings: The current configuration for this email handler: * - handler: The handler information, including: * - id: The handler plugin id. * - handler_id: The handler id. * - label: The handler label. * - description: The handler description. * * @ingroup themeable */ #} {% if settings.debug %}{{ 'Debugging is enabled'|t }}
{% endif %} {{ 'To:'|t }} {{ settings.to_mail }}
{% if settings.cc_mail %}{{ 'Cc:'|t }} {{ settings.cc_mail }}
{% endif %} {% if settings.bcc_mail %}{{ 'Bcc:'|t }} {{ settings.bcc_mail }}
{% endif %} {{ 'From:'|t }} {{ settings.from_mail }} {% if settings.from_name %}<{{ settings.from_name }}>{% endif %}
{{ 'Subject:'|t }} {{ settings.subject }}
{{ 'Settings:'|t }} {{ settings.html ? 'HTML' : 'Plain text'|t }}{{ settings.html and settings.attachments ? '/' : '' }}{{ settings.attachments ? 'Attachments '|t : '' }}