Files
fizzy/app/views/mailers/notification/bundle_mailer/_notification.html.erb
T
2025-08-27 10:42:02 -05:00

10 lines
430 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/header", notification: notification %>
<%= render "notification/bundle_mailer/#{notification.source_type.underscore}/body", notification: notification %>
</td>
</tr>
</table>