2014-08-27 19:38:03 +08:00
|
|
|
<div id='main' class=<%= classes %>>
|
2014-05-13 04:51:53 +08:00
|
|
|
|
2015-12-08 05:52:10 +08:00
|
|
|
<div class='header-instructions'>%{header_instructions}</div>
|
|
|
|
|
2017-04-25 03:26:06 +08:00
|
|
|
<%- if SiteSetting.private_email? %>
|
|
|
|
<p><%= t('system_messages.contents_hidden') %></p>
|
|
|
|
<% else %>
|
2019-08-07 00:45:28 +08:00
|
|
|
<%= render partial: 'email/post', locals: { post: post, use_excerpt: SiteSetting.post_excerpts_in_emails } %>
|
2017-04-25 03:26:06 +08:00
|
|
|
|
|
|
|
<% if in_reply_to_post.present? || context_posts.present? %>
|
|
|
|
<div class='footer'>%{respond_instructions}</div>
|
|
|
|
<hr>
|
|
|
|
<% end %>
|
2013-07-24 15:13:15 +08:00
|
|
|
|
2017-04-25 03:26:06 +08:00
|
|
|
<% if in_reply_to_post.present? %>
|
|
|
|
<h4 class='previous-discussion'><%= t "user_notifications.in_reply_to" %></h4>
|
|
|
|
<%= render partial: 'email/post', locals: { post: in_reply_to_post, use_excerpt: true} %>
|
|
|
|
<% end %>
|
2015-08-13 05:00:16 +08:00
|
|
|
|
2017-04-25 03:26:06 +08:00
|
|
|
<% if context_posts.present? %>
|
|
|
|
<h4 class='previous-discussion'><%= t "user_notifications.previous_discussion" %></h4>
|
|
|
|
<% context_posts.each do |p| %>
|
|
|
|
<%= render partial: 'email/post', locals: { post: p, use_excerpt: false } %>
|
|
|
|
<% end %>
|
2015-08-13 05:00:16 +08:00
|
|
|
<% end %>
|
2013-07-24 15:13:15 +08:00
|
|
|
|
2017-04-25 03:26:06 +08:00
|
|
|
<% if reached_limit %>
|
|
|
|
<hr>
|
|
|
|
<div class='footer'><%= t "user_notifications.reached_limit", count: SiteSetting.max_emails_per_day_per_user %></div>
|
|
|
|
<% end %>
|
2016-03-23 12:08:34 +08:00
|
|
|
<% end %>
|
2016-04-15 02:23:52 +08:00
|
|
|
|
2018-06-12 06:54:39 +08:00
|
|
|
<div class='footer undecorated-link-footer <%= first_footer_classes %>'>%{respond_instructions}</div>
|
2016-06-03 21:48:54 +08:00
|
|
|
<div class='footer'>%{unsubscribe_instructions}</div>
|
2013-07-26 15:27:46 +08:00
|
|
|
|
|
|
|
</div>
|
2015-08-13 05:00:16 +08:00
|
|
|
|
2015-04-22 18:27:14 +08:00
|
|
|
<div itemscope itemtype="http://schema.org/EmailMessage" style="display:none">
|
2015-08-13 05:00:16 +08:00
|
|
|
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
|
2017-04-25 03:26:06 +08:00
|
|
|
<link itemprop="url" href="<%= Discourse.base_url %><%= post.url(without_slug: SiteSetting.private_email?) %>" />
|
2015-08-13 05:00:16 +08:00
|
|
|
<meta itemprop="name" content="<%= t 'read_full_topic' %>"/>
|
|
|
|
</div>
|
2015-04-22 18:27:14 +08:00
|
|
|
</div>
|