{% import "_includes/forms" as forms %}

{{ "Copy & Paste"|t('sprout-email') }}

{% set dateScheduled = craft.sproutEmail.getDisplayDateScheduled(email) %} {% if dateScheduled is not empty %}
{{ "Date Scheduled"|t('sprout-email') }} : {{ dateScheduled|date("F jS Y \\a\\t g:ia") }}
{% endif %}
{{ "HTML Content"|t('sprout-email') }}
{{ "Select HTML"|t('sprout-email') }}
{{ forms.textarea({ id: "html-content", name: "html", value: html, rows: 5, class: "code textfield", autofocus: true, }) }}
{{ "Text Content"|t('sprout-email') }}
{{ "Select Text"|t('sprout-email') }}
{{ forms.textarea({ id: "text-content", name: "text", value: text, rows: 5, class: "code textfield", }) }}