<%= raw(t 'user_notifications.digest.why', site_link: html_site_link, last_seen_at: @last_seen_at) %>
<%- if @featured_topics.present? %>
<%=t 'user_notifications.digest.top_topics' %>
<%- @featured_topics.each_with_index do |t, i| %>
<%= link_to t.title, "#{Discourse.base_url}#{t.relative_url}" %>
<%= email_category(t.category) %>
<%- if t.best_post.present? %>
<%= email_excerpt(t.best_post.cooked, @featured_topics.size) %>
<%- end %>
<%- if i < @featured_topics.size - 1 %> <% end %>
<%- end %>
<%- end %>
<%- if @new_topics.present? %>
<%=t 'user_notifications.digest.other_new_topics' %>
<%- @new_topics.each do |t| %>
-
<%= link_to t.title, "#{Discourse.base_url}#{t.relative_url}" %>
<%= t('user_notifications.digest.posts', count: t.posts_count) %>
<%= email_category(t.category) %>
<%- end -%>
<%- end -%>
<%- if @new_topics_since_seen > 0 %>
<%- if @new_by_category.present? %>
<%= t('user_notifications.digest.more_topics_category', last_seen_at: @last_seen_at, new_topics_since_seen: @new_topics_since_seen) %>
<%- @new_by_category.each do |c| %>
<%= email_category(c[0], show_uncategorized: true) %> x <%= c[1] %>
<%- end %>
<%- else %>
<%= t('user_notifications.digest.more_topics', last_seen_at: @last_seen_at, new_topics_since_seen: @new_topics_since_seen) %>
<%- end %>
<%- end -%>
|