Files
php_assessment_2/wp-content/plugins/mailpoet/views/emails/statsNotificationAutomatedEmails.txt
T
emmymayo 7269c99357 init
2025-02-05 23:15:46 +01:00

20 lines
803 B
Plaintext

<% extends 'emails/statsNotificationLayout.txt' %>
<% block content %>
<%= __('Your monthly stats are in!') %>
<% for newsletter in newsletters %>
------------------------------------------
<%= newsletter.subject %>
<%= stats_number_format_i18n(newsletter.clicked) %>% <%= __('clicked') %> (<%= clicked_stats_text(newsletter.clicked) %>)
<%= stats_number_format_i18n(newsletter.opened) %>% <%= __('opened') %>
<%= stats_number_format_i18n(newsletter.machineOpened) %>% <%= __('machine-opened') %>
<%= stats_number_format_i18n(newsletter.unsubscribed) %>% <%= __('unsubscribed') %>
<%= stats_number_format_i18n(newsletter.bounced) %>% <%= __('bounced') %>
<%= __('View all stats') %>
<%= newsletter.linkStats %>
<% endfor %>
------------------------------------------
<% endblock %>