mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 08:53:38 +08:00
958437e7dd
instead of "last emailed" so that people getting email notifications (from a watched topic for example) also get the activity summaries.
Context - https://meta.discourse.org/t/activity-summary-not-sent-if-other-emails-are-sent/293040
Internal Ref - t/125582
Improvement over 95885645d9
59 lines
2.1 KiB
Plaintext
59 lines
2.1 KiB
Plaintext
<%- site_link = raw(@markdown_linker.create(@site_name, '/')) %>
|
|
<%= raw(t 'user_notifications.digest.why', site_link: site_link, since: @since) %>
|
|
|
|
<%- @counts.each do |count| -%>
|
|
<%= count[:value] -%> <%=t count[:label_key] %>
|
|
<%- end -%>
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
<%- if @popular_topics.present? %>
|
|
### <%=t 'user_notifications.digest.popular_topics' %>
|
|
|
|
<%- @popular_topics.each_with_index do |t,i| %>
|
|
<%= raw(@markdown_linker.create(t.title, t.url)) %>
|
|
|
|
<%- if t.best_post.present? %>
|
|
<%= raw(t.best_post.excerpt(1000, strip_links: true, text_entities: true, markdown_images: true)) %>
|
|
--------------------------------------------------------------------------------
|
|
|
|
<%- end %>
|
|
<%= digest_custom_text("below_post_#{i+1}") %>
|
|
<%- end %>
|
|
<%- end %>
|
|
<%= digest_custom_text("above_popular_topics") %>
|
|
|
|
<%- if @popular_posts.present? %>
|
|
### <%=t 'user_notifications.digest.popular_posts' %>
|
|
|
|
<%- @popular_posts.each_with_index do |post,i| %>
|
|
<%= post.user.username -%> - <%= raw(@markdown_linker.create(post.topic.title, post.topic.url)) %>
|
|
|
|
<%= raw(post.excerpt(1000, strip_links: true, text_entities: true, markdown_images: true)) %>
|
|
--------------------------------------------------------------------------------
|
|
|
|
<%- end %>
|
|
<%- end %>
|
|
|
|
<%- if @other_new_for_you.present? %>
|
|
**<%=t 'user_notifications.digest.more_new' %>**
|
|
|
|
<%- @other_new_for_you.each do |t| %>
|
|
* <%= raw(@markdown_linker.create(t.title, t.url)) %> - <%= t.posts_count %> - <%- if t.category %>[<%= t.category.name %>]<%- end %>
|
|
<%- end -%>
|
|
<%- end %>
|
|
|
|
<%= digest_custom_text("below_popular_topics") %>
|
|
|
|
<%= raw(@markdown_linker.references) %>
|
|
|
|
<%= digest_custom_text("above_footer") %>
|
|
<%=raw(t :'user_notifications.digest.unsubscribe',
|
|
site_link: site_link,
|
|
email_preferences_link: raw(@markdown_linker.create(t('user_notifications.digest.your_email_settings'), '/my/preferences/emails')),
|
|
unsubscribe_link: raw(@markdown_linker.create(t('user_notifications.digest.click_here'), "/email/unsubscribe/#{@unsubscribe_key}"))) %>
|
|
|
|
<%= raw(@markdown_linker.references) %>
|
|
|
|
<%= digest_custom_text("below_footer") %>
|