congratulatoryMssEmail.html
3 months ago
congratulatoryMssEmail.txt
3 months ago
index.php
3 years ago
newSubscriberNotification.html
3 months ago
newSubscriberNotification.txt
3 months ago
statsNotification.html
2 months ago
statsNotification.txt
2 months ago
statsNotificationAutomatedEmails.html
2 months ago
statsNotificationAutomatedEmails.txt
2 months ago
statsNotificationAutomatedEmailsGarden.html
2 months ago
statsNotificationGarden.html
2 months ago
statsNotificationLayout.html
2 months ago
statsNotificationLayout.txt
2 months ago
statsNotification.txt
63 lines
| 1 | <% extends 'emails/statsNotificationLayout.txt' %> |
| 2 | |
| 3 | <% block content %> |
| 4 | <% if is_garden() %> |
| 5 | <%= blogName %> |
| 6 | |
| 7 | <%= __('Your campaign stats') %> |
| 8 | |
| 9 | <% if recipientFirstName %><%= __('Hi %s,')|replace({'%s': recipientFirstName}) %> |
| 10 | |
| 11 | <% endif %> |
| 12 | <%= __('Here\'s how your campaign "%s" performed in the first 24 hours.')|replace({'%s': subject}) %> |
| 13 | |
| 14 | <%= __('Clicked') %>: <%= stats_number_format_i18n(clicked) %>% (<%= clicked_stats_text_garden(clicked) %>) |
| 15 | <%= __('Opened') %>: <%= stats_number_format_i18n(opened) %>% |
| 16 | <%= __('Machine-opened') %>: <%= stats_number_format_i18n(machineOpened) %>% |
| 17 | <%= __('Unsubscribed') %>: <%= stats_number_format_i18n(unsubscribed) %>% |
| 18 | <%= __('Bounced') %>: <%= stats_number_format_i18n(bounced) %>% |
| 19 | |
| 20 | <%= __('View full campaign report') %> |
| 21 | <%= linkStats|raw %> |
| 22 | <% else %> |
| 23 | <%= __('Your stats are in!') %> |
| 24 | |
| 25 | <%= subject %> |
| 26 | |
| 27 | <% if subscribersLimitReached %> |
| 28 | <%= __('Congratulations, you now have more than [subscribersLimit] subscribers!')|replace({'[subscribersLimit]': subscribersLimit}) %> |
| 29 | |
| 30 | <% if hasValidApiKey %> |
| 31 | <%= __('Your plan is limited to [subscribersLimit] subscribers.')|replace({'[subscribersLimit]': subscribersLimit}) %> |
| 32 | <% else %> |
| 33 | <%= __('Our free version is limited to [subscribersLimit] subscribers.')|replace({'[subscribersLimit]': subscribersLimit}) %> |
| 34 | <% endif %> |
| 35 | <%= __('You need to upgrade now to be able to continue using MailPoet.') %> |
| 36 | |
| 37 | <%= __('Upgrade Now') %> |
| 38 | <%= upgradeNowLink|raw %> |
| 39 | <% endif %> |
| 40 | |
| 41 | <%= stats_number_format_i18n(clicked) %>% <%= __('clicked') %> |
| 42 | <%= clicked_stats_text(clicked) %> |
| 43 | |
| 44 | <%= stats_number_format_i18n(opened) %>% <%= __('opened') %> |
| 45 | |
| 46 | <%= stats_number_format_i18n(machineOpened) %>% <%= __('machine-opened') %> |
| 47 | |
| 48 | <%= stats_number_format_i18n(unsubscribed) %>% <%= __('unsubscribed') %> |
| 49 | |
| 50 | <%= stats_number_format_i18n(bounced) %>% <%= __('bounced') %> |
| 51 | |
| 52 | <% if topLinkClicks > 0 %> |
| 53 | <%= __('Most clicked link') %> |
| 54 | <%= topLink %> |
| 55 | |
| 56 | <%= __('%s unique clicks')|replace({'%s': topLinkClicks}) %> |
| 57 | <% endif %> |
| 58 | |
| 59 | <%= __('View all stats') %> |
| 60 | <%= linkStats|raw %> |
| 61 | <% endif %> |
| 62 | <% endblock %> |
| 63 |