index.php
7 years ago
newSubscriberNotification.html
7 years ago
newSubscriberNotification.txt
7 years ago
statsNotification.html
7 years ago
statsNotification.txt
7 years ago
statsNotification.txt
41 lines
| 1 | <%= __('Your stats are in!') %> |
| 2 | |
| 3 | <%= subject %> |
| 4 | |
| 5 | <%= __('open rate') %>: <%= number_format_i18n(opened) %>% |
| 6 | <% if opened > 30 %> |
| 7 | <%= __('EXCELLENT') %> |
| 8 | <% elseif opened > 10 %> |
| 9 | <%= __('GOOD') %> |
| 10 | <% else %> |
| 11 | <%= __('BAD') %> |
| 12 | <% endif %> |
| 13 | |
| 14 | <%= __('click rate') %>: <%= number_format_i18n(clicked) %>% |
| 15 | <% if clicked > 3 %> |
| 16 | <%= __('EXCELLENT') %> |
| 17 | <% elseif clicked > 1 %> |
| 18 | <%= __('GOOD') %> |
| 19 | <% else %> |
| 20 | <%= __('BAD') %> |
| 21 | <% endif %> |
| 22 | |
| 23 | <% if topLinkClicks > 0 %> |
| 24 | <%= __('Most clicked link') %> |
| 25 | <%= topLink %> |
| 26 | |
| 27 | <%= __('%s unique clicks')|replace({'%s': topLinkClicks}) %> |
| 28 | <% endif %> |
| 29 | |
| 30 | <% if premiumPluginActive %> |
| 31 | <%= __('View all stats') %> |
| 32 | <%= linkStats %> |
| 33 | <% else %> |
| 34 | <%= __('See Premium features') %> |
| 35 | <%= premiumPage %> |
| 36 | <% endif %> |
| 37 | |
| 38 | <%= __('How to improve my open rate?') %> https://mailpoet.com/how-to-improve-open-rates |
| 39 | <%= __('And my click rate?') %> https://mailpoet.com/how-to-improve-click-rates |
| 40 | <%= __('Disable these emails') %> <%= linkSettings %> |
| 41 |