From 06ac7c829b92b77b3b995c9ce56489ce46c96744 Mon Sep 17 00:00:00 2001 From: Nithin David Thomas <1277421+nithindavid@users.noreply.github.com> Date: Thu, 15 Jun 2023 16:00:21 +0530 Subject: [PATCH] fix: Fixes wrong variable usage in transcript file (#7316) --- .../conversation_reply_mailer/conversation_transcript.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 9bcd231f9..ea253a4c8 100644 --- a/app/views/mailers/conversation_reply_mailer/conversation_transcript.html.erb +++ b/app/views/mailers/conversation_reply_mailer/conversation_transcript.html.erb @@ -7,7 +7,7 @@ <% if message.content %> - <%= ChatwootMarkdownRenderer.new(message_content).render_message %> + <%= ChatwootMarkdownRenderer.new(message.content).render_message %> <% end %> <% if message.attachments %> <% message.attachments.each do |attachment| %>