Files
piratepoet/views/emails/statsNotificationAutomatedEmails.txt
Pavel Dohnal e330fe1713 Fill templates
[MAILPOET-1859]
2019-07-29 09:01:22 -04:00

17 lines
600 B
Plaintext

<% extends 'emails/statsNotificationLayout.txt' %>
<% block content %>
<%= __('Your monthly stats are in!') %>
<% for newsletter in newsletters %>
------------------------------------------
<%= newsletter.subject %>
<%= __('open rate') %>: <%= number_format_i18n(newsletter.opened, 1) %>% (<%= opened_stats_text(newsletter.opened) %>)
<%= __('click rate') %>: <%= number_format_i18n(newsletter.clicked, 1) %>% (<%= clicked_stats_text(newsletter.clicked) %>)
<%= __('View all stats') %>
<%= newsletter.linkStats %>
<% endfor %>
------------------------------------------
<% endblock %>