{% if sentNotification.to %}
{{ 'To:' | t('formie') }}
{{ sentNotification.to }}
{% endif %} {% if sentNotification.cc %}
{{ 'Cc:' | t('formie') }}
{{ sentNotification.cc }}
{% endif %} {% if sentNotification.bcc %}
{{ 'Bcc:' | t('formie') }}
{{ sentNotification.bcc }}
{% endif %} {% if sentNotification.subject %}
{{ 'Subject:' | t('formie') }}
{{ sentNotification.subject }}
{% endif %} {% if sentNotification.replyTo %}
{{ 'Reply To:' | t('formie') }}
{{ sentNotification.replyTo }}
{% endif %} {% if sentNotification.from %} {% if sentNotification.fromName %}
{{ 'From:' | t('formie') }}
{{ sentNotification.fromName }} <{{ sentNotification.from }}>
{% else %}
{{ 'From:' | t('formie') }}
{{ sentNotification.from }}
{% endif %} {% endif %} {% if sentNotification.sender %}
{{ 'Sender:' | t('formie') }}
{{ sentNotification.sender }}
{% endif %}
{% js %} iFrameResize({ log: true }, '.email-iframe') {% endjs %} {% css %} .fui-email-preview { position: relative; box-shadow: 0 0 0 1px rgba(49,49,93,.05), 0 2px 5px 0 rgba(49,49,93,.075), 0 1px 3px 0 rgba(49,49,93,.15); background-color: #fff; border-radius: 4px; } .fui-email-header, .fui-email-footer { background: #f5f8fc; width: 100%; height: 20px; } .fui-email-header { border-bottom: 1px #e5e5e5 solid; border-radius: 4px 4px 0 0; } .fui-email-footer { border-top: 1px #e5e5e5 solid; border-radius: 0 0 4px 4px; } .fui-email-meta { display: flex; font-size: 13px; padding: 4px 0; border-bottom: 1px #e5e5e5 solid; } .fui-email-meta-label { width: 75px; text-align: right; font-weight: 700; color: #b2bac1; margin-right: 8px; flex: 0 0 auto; } .fui-email-body { min-height: 20rem; padding: 16px; } {% endcss %}