23 lines
594 B
Text
23 lines
594 B
Text
<p>Hi <%= @contact.name %>,</p>
|
|
|
|
<p>You have new messages on your conversation.</p>
|
|
|
|
<% @messages.each do |message| %>
|
|
<tr>
|
|
<td>
|
|
<b><%= message.incoming? ? 'You' : message.user.name %></b>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding-bottom: 16px;">
|
|
<% if message.content %>
|
|
<%= message.content %>
|
|
<% end %>
|
|
<% if message.attachments %>
|
|
<% message.attachments.each do |attachment| %>
|
|
attachment [<a href="<%= attachment.file_url %>" _target="blank">click here to view</a>]
|
|
<% end %>
|
|
<% end %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|