10 lines
430 B
Plaintext
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>
|