2016-05-21 09:17:54 -04:00
|
|
|
<%- site_link = raw(@markdown_linker.create(@site_name, '/')) %>
|
|
|
|
<%= raw(t 'user_notifications.mailing_list.why', site_link: site_link, date: @since_formatted) %>
|
|
|
|
|
|
|
|
<%- if @new_topic_posts.keys.present? -%>
|
|
|
|
### <%= t 'user_notifications.mailing_list.new_topics' %>
|
|
|
|
<%- @new_topic_posts.keys.each do |topic| %>
|
2017-04-24 15:26:06 -04:00
|
|
|
<%= mailing_list_topic_text(topic) %>
|
2016-05-21 09:17:54 -04:00
|
|
|
<%- end -%>
|
|
|
|
<%- end -%>
|
|
|
|
|
|
|
|
<%- if @existing_topic_posts.keys.present? -%>
|
|
|
|
### <%= t 'user_notifications.mailing_list.new_topics' %>
|
|
|
|
<%- @existing_topic_posts.keys.each do |topic| -%>
|
2017-04-24 15:26:06 -04:00
|
|
|
<%= mailing_list_topic_text(topic) %>
|
2016-05-21 09:17:54 -04:00
|
|
|
<%= @existing_topic_posts[topic].length %>
|
|
|
|
<%- end -%>
|
|
|
|
<%- end -%>
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
2017-04-24 15:26:06 -04:00
|
|
|
<%- unless SiteSetting.private_email? %>
|
|
|
|
<%- @posts_by_topic.keys.each do |topic| %>
|
|
|
|
### <%= raw(@markdown_linker.create(topic.title, topic.relative_url)) %>
|
2016-05-21 09:17:54 -04:00
|
|
|
|
2017-04-24 15:26:06 -04:00
|
|
|
<%- @posts_by_topic[topic].each do |post| -%>
|
|
|
|
<%= post.user.name || post.user.username %> - <%= post.created_at %>
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
<%= post.raw %>
|
2016-05-21 09:17:54 -04:00
|
|
|
|
2017-04-24 15:26:06 -04:00
|
|
|
|
|
|
|
<%- end -%>
|
|
|
|
<%- end %>
|
2016-05-21 09:17:54 -04:00
|
|
|
<%- end %>
|