Files
leadchat/app/views/mailers/conversation_reply_mailer/conversation_transcript.html.erb
CristianDuta bf2b75b281 feat: Add message timestamp to the conversation transcript emails (#7648)
Co-authored-by: Cristian Duta <Cristian.Duta@ti8m.ch>
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2023-08-04 17:21:14 -07:00

27 lines
921 B
Plaintext

<% @messages.each do |message| %>
<tr>
<td>
<b><%= message.sender&.try(:available_name) || message.sender&.name || '' %></b>
</td>
</tr>
<tr>
<td style="padding-bottom: 32px;">
<% if message.content %>
<%= ChatwootMarkdownRenderer.new(message.content).render_message %>
<% end %>
<% if message.attachments %>
<% message.attachments.each do |attachment| %>
Attachment [<a href="<%= attachment.file_url %>" _target="blank">Click here to view</a>]
<% end %>
<% end %>
<p style="font-size: 90%; font-size: 90%;color: #899096;margin-top: -8px; margin-bottom: 0px;">
<% if @inbox.timezone.present? %>
<%= message.created_at.in_time_zone(@inbox.timezone).strftime('%b %d, %I:%M %p %Z') %>
<% else %>
<%= message.created_at.strftime('%b %d, %I:%M %p %Z') %>
<% end %>
</p>
</td>
</tr>
<% end %>