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>
This commit is contained in:
CristianDuta
2023-08-05 02:21:14 +02:00
committed by GitHub
parent c084ad5a68
commit bf2b75b281

View File

@@ -5,7 +5,7 @@
</td>
</tr>
<tr>
<td style="padding-bottom: 16px;">
<td style="padding-bottom: 32px;">
<% if message.content %>
<%= ChatwootMarkdownRenderer.new(message.content).render_message %>
<% end %>
@@ -14,7 +14,13 @@
Attachment [<a href="<%= attachment.file_url %>" _target="blank">Click here to view</a>]
<% end %>
<% end %>
<br />
<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 %>