25 lines
787 B
Handlebars
25 lines
787 B
Handlebars
{{#unless only_daily}}
|
|
<!-- number of emails & frequency -->
|
|
<%=
|
|
__('%1$s emails')
|
|
| format('{{ emails }}')
|
|
%> {{ format_time interval }}.
|
|
{{/unless}}
|
|
|
|
<!-- number of emails per day -->
|
|
<%=
|
|
__("That's <strong>%1$s emails</strong> per day")
|
|
| format('{{ daily_emails }}')
|
|
| raw
|
|
%>
|
|
|
|
{{#ifCond emails_per_second ">" "1"}}
|
|
<br /><br />
|
|
<span style="color: #d54e21;">
|
|
<%=
|
|
__("That's %1$s emails per second. <strong>We highly recommend to send 1 email per second, at the absolute maximum.</strong> MailPoet needs at least one second to process and send a single email (on most hosts.) <strong>Alternatively, send with MailPoet, which can be up to 50 times faster.</strong>")
|
|
| format('{{ emails_per_second }}')
|
|
| raw
|
|
%>
|
|
</span>
|
|
{{/ifCond}} |