2020-01-23 17:29:07 +00:00
|
|
|
<p>Hi <%= @contact.name %>,</p>
|
|
|
|
|
|
|
|
<p>You have new messages on your conversation.</p>
|
|
|
|
|
|
|
|
<table>
|
2020-01-24 08:46:52 +00:00
|
|
|
<% @messages.each do |message| %>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<b><%= message.incoming? ? 'You' : message.user.name %></b>
|
|
|
|
</td>
|
2020-03-30 10:37:01 +00:00
|
|
|
<td>:
|
|
|
|
<% if message.attachment %>
|
|
|
|
attachment [<a href="<%= message.attachment.file_url %>" _target="blank">click here to view</a>]
|
|
|
|
<% else %>
|
|
|
|
<%= message.content %>
|
|
|
|
<% end %>
|
|
|
|
</td>
|
2020-01-24 08:46:52 +00:00
|
|
|
</tr>
|
|
|
|
<% end %>
|
2020-01-23 17:29:07 +00:00
|
|
|
</table>
|