congratulatoryMssEmail.html
5 months ago
congratulatoryMssEmail.txt
5 months ago
index.php
3 years ago
newSubscriberNotification.html
5 months ago
newSubscriberNotification.txt
5 months ago
statsNotification.html
4 months ago
statsNotification.txt
4 months ago
statsNotificationAutomatedEmails.html
4 months ago
statsNotificationAutomatedEmails.txt
4 months ago
statsNotificationAutomatedEmailsGarden.html
4 months ago
statsNotificationGarden.html
4 months ago
statsNotificationLayout.html
4 months ago
statsNotificationLayout.txt
4 months ago
subscriberLimitThresholdNotification.html
2 months ago
subscriberLimitThresholdNotification.txt
2 months ago
statsNotificationAutomatedEmails.txt
45 lines
| 1 | <% extends 'emails/statsNotificationLayout.txt' %> |
| 2 | |
| 3 | <% block content %> |
| 4 | <% if is_garden() %> |
| 5 | <%= blogName %> |
| 6 | |
| 7 | <%= __('Your monthly automation stats') %> |
| 8 | |
| 9 | <% if recipientFirstName %><%= __('Hi %s,')|replace({'%s': recipientFirstName}) %> |
| 10 | |
| 11 | <% endif %> |
| 12 | <%= __('Here\'s a summary of how your active automations performed this month.') %> |
| 13 | |
| 14 | <% for newsletter in newsletters %> |
| 15 | ------------------------------------------ |
| 16 | <%= newsletter.subject %> |
| 17 | |
| 18 | <%= __('Clicked') %>: <%= stats_number_format_i18n(newsletter.clicked) %>% (<%= clicked_stats_text_garden(newsletter.clicked) %>) |
| 19 | <%= __('Opened') %>: <%= stats_number_format_i18n(newsletter.opened) %>% |
| 20 | <%= __('Machine-opened') %>: <%= stats_number_format_i18n(newsletter.machineOpened) %>% |
| 21 | <%= __('Unsubscribed') %>: <%= stats_number_format_i18n(newsletter.unsubscribed) %>% |
| 22 | <%= __('Bounced') %>: <%= stats_number_format_i18n(newsletter.bounced) %>% |
| 23 | |
| 24 | <%= __('View automation report') %> |
| 25 | <%= newsletter.linkStats|raw %> |
| 26 | <% endfor %> |
| 27 | ------------------------------------------ |
| 28 | <% else %> |
| 29 | <%= __('Your monthly stats are in!') %> |
| 30 | |
| 31 | <% for newsletter in newsletters %> |
| 32 | ------------------------------------------ |
| 33 | <%= newsletter.subject %> |
| 34 | <%= stats_number_format_i18n(newsletter.clicked) %>% <%= __('clicked') %> (<%= clicked_stats_text(newsletter.clicked) %>) |
| 35 | <%= stats_number_format_i18n(newsletter.opened) %>% <%= __('opened') %> |
| 36 | <%= stats_number_format_i18n(newsletter.machineOpened) %>% <%= __('machine-opened') %> |
| 37 | <%= stats_number_format_i18n(newsletter.unsubscribed) %>% <%= __('unsubscribed') %> |
| 38 | <%= stats_number_format_i18n(newsletter.bounced) %>% <%= __('bounced') %> |
| 39 | <%= __('View all stats') %> |
| 40 | <%= newsletter.linkStats|raw %> |
| 41 | <% endfor %> |
| 42 | ------------------------------------------ |
| 43 | <% endif %> |
| 44 | <% endblock %> |
| 45 |