17 lines
460 B
Text
17 lines
460 B
Text
|
<p>Hi <%= @contact.name %>,</p>
|
||
|
|
||
|
<p>You have new messages on your conversation.</p>
|
||
|
|
||
|
<table>
|
||
|
<% @messages.each do |message| %>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<b><%= message.incoming? ? 'You' : message.user.name %></b>
|
||
|
</td>
|
||
|
<td>: <%= message.content %></td>
|
||
|
</tr>
|
||
|
<% end %>
|
||
|
</table>
|
||
|
|
||
|
<p>Click <%= link_to 'here', app_conversation_url(id: @conversation.display_id) %> to get back to the conversation. </p>
|