diff --git a/app/views/mailers/conversation_reply_mailer/conversation_transcript.html.erb b/app/views/mailers/conversation_reply_mailer/conversation_transcript.html.erb index ea253a4c8..7bc14eabe 100644 --- a/app/views/mailers/conversation_reply_mailer/conversation_transcript.html.erb +++ b/app/views/mailers/conversation_reply_mailer/conversation_transcript.html.erb @@ -5,7 +5,7 @@ - + <% if message.content %> <%= ChatwootMarkdownRenderer.new(message.content).render_message %> <% end %> @@ -14,7 +14,13 @@ Attachment [Click here to view] <% end %> <% end %> -
+

+ <% 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 %> +

<% end %>