congratulatoryMssEmail.html
3 years ago
congratulatoryMssEmail.txt
4 years ago
index.php
3 years ago
newSubscriberNotification.html
4 years ago
newSubscriberNotification.txt
4 years ago
statsNotification.html
4 years ago
statsNotification.txt
4 years ago
statsNotificationAutomatedEmails.html
4 years ago
statsNotificationAutomatedEmails.txt
4 years ago
statsNotificationLayout.html
3 years ago
statsNotificationLayout.txt
4 years ago
statsNotification.txt
44 lines
| 1 | <% extends 'emails/statsNotificationLayout.txt' %> |
| 2 | |
| 3 | <% block content %> |
| 4 | <%= __('Your stats are in!') %> |
| 5 | |
| 6 | <%= subject %> |
| 7 | |
| 8 | <% if subscribersLimitReached %> |
| 9 | <%= __('Congratulations, you now have more than [subscribersLimit] subscribers!')|replace({'[subscribersLimit]': subscribersLimit}) %> |
| 10 | |
| 11 | <% if hasValidApiKey %> |
| 12 | <%= __('Your plan is limited to [subscribersLimit] subscribers.')|replace({'[subscribersLimit]': subscribersLimit}) %> |
| 13 | <% else %> |
| 14 | <%= __('Our free version is limited to [subscribersLimit] subscribers.')|replace({'[subscribersLimit]': subscribersLimit}) %> |
| 15 | <% endif %> |
| 16 | <%= __('You need to upgrade now to be able to continue using MailPoet.') %> |
| 17 | |
| 18 | <%= __('Upgrade Now') %> |
| 19 | <%= upgradeNowLink %> |
| 20 | <% endif %> |
| 21 | |
| 22 | <%= stats_number_format_i18n(clicked) %>% <%= __('clicked') %> |
| 23 | <%= clicked_stats_text(clicked) %> |
| 24 | |
| 25 | <%= stats_number_format_i18n(opened) %>% <%= __('opened') %> |
| 26 | |
| 27 | <%= stats_number_format_i18n(machineOpened) %>% <%= __('machine-opened') %> |
| 28 | |
| 29 | <%= stats_number_format_i18n(unsubscribed) %>% <%= __('unsubscribed') %> |
| 30 | |
| 31 | <%= stats_number_format_i18n(bounced) %>% <%= __('bounced') %> |
| 32 | |
| 33 | <% if topLinkClicks > 0 %> |
| 34 | <%= __('Most clicked link') %> |
| 35 | <%= topLink %> |
| 36 | |
| 37 | <%= __('%s unique clicks')|replace({'%s': topLinkClicks}) %> |
| 38 | <% endif %> |
| 39 | |
| 40 | <%= __('View all stats') %> |
| 41 | <%= linkStats %> |
| 42 | |
| 43 | <% endblock %> |
| 44 |