Update Composer, update everything
This commit is contained in:
parent
ea3e94409f
commit
dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions
|
@ -1,23 +1,21 @@
|
|||
{#
|
||||
/**
|
||||
* @file
|
||||
* Default theme implementation for a summary of a form email handler.
|
||||
* Default theme implementation for a summary of a webform 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.
|
||||
* - settings: The current configuration for this email handler.
|
||||
* - handler: The email handler.
|
||||
*
|
||||
* @ingroup themeable
|
||||
*/
|
||||
#}
|
||||
{% if settings.debug %}<b class="color-error">{{ 'Debugging is enabled'|t }}</b><br/>{% endif %}
|
||||
<b>{{ 'To:'|t }}</b> {{ settings.to_mail }}<br/>
|
||||
{% if settings.cc_mail %}<b>{{ 'Cc:'|t }}</b> {{ settings.cc_mail }}<br/>{% endif %}
|
||||
{% if settings.bcc_mail %}<b>{{ 'Bcc:'|t }}</b> {{ settings.bcc_mail }}<br/>{% endif %}
|
||||
<b>{{ 'From:'|t }}</b> {{ settings.from_mail }} {% if settings.from_name %}<{{ settings.from_name }}>{% endif %}<br/>
|
||||
<b>{{ 'Subject:'|t }}</b> {{ settings.subject }}<br/>
|
||||
<b>{{ 'Settings:'|t }}</b> {{ settings.html ? 'HTML' : 'Plain text'|t }}{{ settings.html and settings.attachments ? '/' : '' }}{{ settings.attachments ? 'Attachments '|t : '' }}
|
||||
{% if settings.debug %}<b class="color-error">{{ 'Debugging is enabled'|t }}</b><br />{% endif %}
|
||||
<b>{{ 'To:'|t }}</b> {{ settings.to_mail }}<br />
|
||||
{% if settings.cc_mail %}<b>{{ 'CC:'|t }}</b> {{ settings.cc_mail }}<br />{% endif %}
|
||||
{% if settings.bcc_mail %}<b>{{ 'BCC:'|t }}</b> {{ settings.bcc_mail }}<br />{% endif %}
|
||||
<b>{{ 'From:'|t }}</b> {% if settings.from_name %}{{ settings.from_name }}{% endif %} <{{ settings.from_mail }}><br />
|
||||
<b>{{ 'Subject:'|t }}</b> {{ settings.subject }}<br />
|
||||
<b>{{ 'Settings:'|t }}</b> {{ settings.html ? 'HTML' : 'Plain text'|t }} {{ settings.html and settings.attachments ? '/' : '' }}{{ settings.attachments ? 'Attachments'|t : '' }} {{ settings.twig ? '(Twig)'|t : '' }}<br />
|
||||
<b>{{ 'Sent when:'|t }}</b> {% if settings.states %}{{ settings.states|join('; ') }}{% else %}{{ 'Custom'|t }}{% endif %}<br />
|
||||
{% if settings.theme_name %}<b>{{ 'Theme:'|t }}</b> {{ settings.theme_name }}<br />{% endif %}
|
||||
|
|
Reference in a new issue