説明なし

statsNotificationAutomatedEmails.txt 600B

1234567891011121314151617
  1. <% extends 'emails/statsNotificationLayout.txt' %>
  2. <% block content %>
  3. <%= __('Your monthly stats are in!') %>
  4. <% for newsletter in newsletters %>
  5. ------------------------------------------
  6. <%= newsletter.subject %>
  7. <%= __('open rate') %>: <%= number_format_i18n(newsletter.opened, 1) %>% (<%= opened_stats_text(newsletter.opened) %>)
  8. <%= __('click rate') %>: <%= number_format_i18n(newsletter.clicked, 1) %>% (<%= clicked_stats_text(newsletter.clicked) %>)
  9. <%= __('View all stats') %>
  10. <%= newsletter.linkStats %>
  11. <% endfor %>
  12. ------------------------------------------
  13. <% endblock %>