2014-12-09 05:35:49 +08:00
|
|
|
<p>{{i18n "admin.email.preview_digest_desc"}}</p>
|
2013-06-12 00:27:11 +08:00
|
|
|
|
2017-06-29 03:36:34 +08:00
|
|
|
<div class="admin-controls email-preview">
|
2020-03-11 22:31:29 +08:00
|
|
|
<div class="controls">
|
2021-09-09 23:01:56 +08:00
|
|
|
<div class="inline-form">
|
|
|
|
<label for="last-seen">{{i18n "admin.email.last_seen_user"}}</label>
|
2022-06-30 18:30:50 +08:00
|
|
|
<DatePickerPast @value={{lastSeen}} @id="last-seen" />
|
2021-09-09 23:01:56 +08:00
|
|
|
<label>{{i18n "admin.email.user"}}:</label>
|
2022-06-30 18:30:50 +08:00
|
|
|
<EmailGroupUserChooser @value={{username}} @onChange={{action "updateUsername"}} @options={{hash
|
2021-09-09 23:01:56 +08:00
|
|
|
maximum=1
|
2022-06-30 18:30:50 +08:00
|
|
|
}} />
|
|
|
|
<DButton @class="btn-primary digest-refresh-button" @action={{action "refresh"}} @label="admin.email.refresh" />
|
2021-09-09 23:01:56 +08:00
|
|
|
<div class="toggle">
|
|
|
|
<label>{{i18n "admin.email.format"}}</label>
|
|
|
|
{{#if showHtml}}
|
|
|
|
<span>{{i18n "admin.email.html"}}</span>
|
|
|
|
|
|
|
|
|
<a href {{action "toggleShowHtml"}}>
|
|
|
|
{{i18n "admin.email.text"}}
|
|
|
|
</a>
|
|
|
|
{{else}}
|
|
|
|
<a href {{action "toggleShowHtml"}}>{{i18n "admin.email.html"}}</a> |
|
|
|
|
<span>{{i18n "admin.email.text"}}</span>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
2015-08-16 17:51:31 +08:00
|
|
|
</div>
|
2013-06-04 04:12:24 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2022-06-30 18:30:50 +08:00
|
|
|
<ConditionalLoadingSpinner @condition={{loading}}>
|
2016-11-24 06:46:57 +08:00
|
|
|
|
2019-08-01 14:37:42 +08:00
|
|
|
<div class="email-preview-digest">
|
|
|
|
{{#if showSendEmailForm}}
|
|
|
|
<div class="controls">
|
2021-09-09 23:01:56 +08:00
|
|
|
<div class="inline-form">
|
|
|
|
{{#if sendingEmail}}
|
|
|
|
{{i18n "admin.email.sending_test"}}
|
|
|
|
{{else}}
|
|
|
|
<label>{{i18n "admin.email.send_digest_label"}}</label>
|
2022-06-30 18:30:50 +08:00
|
|
|
<TextField @value={{email}} @placeholderKey="admin.email.test_email_address" />
|
|
|
|
<DButton @class="btn-default" @action={{action "sendEmail"}} @disabled={{sendEmailDisabled}} @label="admin.email.send_digest" />
|
2021-09-09 23:01:56 +08:00
|
|
|
{{#if sentEmail}}
|
|
|
|
<span class="result-message">{{i18n "admin.email.sent_test"}}</span>
|
|
|
|
{{/if}}
|
2019-08-01 14:37:42 +08:00
|
|
|
{{/if}}
|
2021-09-09 23:01:56 +08:00
|
|
|
</div>
|
2019-08-01 14:37:42 +08:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
2016-11-24 06:46:57 +08:00
|
|
|
|
2019-08-01 14:37:42 +08:00
|
|
|
<div class="preview-output">
|
|
|
|
{{#if showHtml}}
|
|
|
|
{{#if htmlEmpty}}
|
|
|
|
<p>{{i18n "admin.email.no_result"}}</p>
|
|
|
|
{{else}}
|
2020-03-27 02:31:02 +08:00
|
|
|
<iframe title={{i18n "admin.email.html_preview"}} srcdoc={{model.html_content}} />
|
2019-08-01 14:37:42 +08:00
|
|
|
{{/if}}
|
2016-11-25 04:38:22 +08:00
|
|
|
{{else}}
|
2020-03-11 16:23:10 +08:00
|
|
|
<pre>{{html-safe model.text_content}}</pre>
|
2016-11-25 04:38:22 +08:00
|
|
|
{{/if}}
|
2019-08-01 14:37:42 +08:00
|
|
|
</div>
|
2016-11-25 04:38:22 +08:00
|
|
|
</div>
|
|
|
|
|
2022-06-30 18:30:50 +08:00
|
|
|
</ConditionalLoadingSpinner>
|