0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-08 16:57:36 +08:00
discourse/app/views/user_notifications/digest/_new_topics.html.erb
benj 3c290648fa
DEV: Refactors digest/summary email into partials (#33451)
This breaks up the large and unwieldy digest (AKA summary) email
template into a handful of partials, in hopes that this enables users to
more easily customize that particular send.
2025-07-07 09:57:15 -05:00

19 lines
No EOL
1.1 KiB
Text
Vendored

<% if @other_new_for_you.present? %>
<center class="digest-new-header" style="color:#0a0a0a;background:#f3f3f3;font-size:22px;font-weight:400;padding-bottom: 8px;font-family:Arial,sans-serif;mso-line-height-rule:exactly;line-height:36px;"><%=t 'user_notifications.digest.more_new' %></center>
<table width="100%" class="digest-new-topics body with-dir" style="background:#f3f3f3;border-spacing:0;border-collapse:collapse!important;font-family:Arial,sans-serif;font-size:14px;font-weight:200;line-height:1.3;padding:0;vertical-align:top;">
<tr>
<td class="side-spacer" style="padding:0;">&nbsp;</td>
<td width="650" align="center" valign="top" style="border-collapse:collapse!important;margin:0;padding:0;">
<table class="digest-new-topic with-dir" style="padding:0;vertical-align:top;width:100%">
<tbody>
<% @other_new_for_you.each do |topic| %>
<%= render partial: "user_notifications/digest/new_topic", locals: { topic: topic } %>
<% end %>
</tbody>
</table>
</td>
<td class="side-spacer" style="padding:0;">&nbsp;</td>
</tr>
</table>
<% end %>