11 lines
553 B
Plaintext
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>
|