Files
fizzy/app/views/notification/bundle_mailer/_notification.html.erb
T
2025-08-26 20:56:32 -05:00

11 lines
553 B
Plaintext

<table class="notification">
<tr>
<td class="avatar__container"><%= image_tag user_avatar_url(notification.creator), alt: notification.creator.name, class: "avatar", size: 48 %></td>
<td>
<%= render "notification/bundle_mailer/notification/header", notification: notification %>
<%= render "notification/bundle_mailer/notification/#{notification.source_type.underscore}/body", notification: notification %>
<%= render "notification/bundle_mailer/notification/footer", notification: notification %>
</td>
</tr>
</table>