From 1fd41277099347eef12f031d6e6e3ee564265842 Mon Sep 17 00:00:00 2001 From: Sony Mathew Date: Fri, 24 Jan 2020 14:31:52 +0545 Subject: [PATCH] Removed agent dashboard link in conversation mail to user (#445) --- .../conversation_mailer/new_message.html.erb | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/app/views/conversation_mailer/new_message.html.erb b/app/views/conversation_mailer/new_message.html.erb index fd59b027c..ecc93eeba 100644 --- a/app/views/conversation_mailer/new_message.html.erb +++ b/app/views/conversation_mailer/new_message.html.erb @@ -3,14 +3,12 @@

You have new messages on your conversation.

- <% @messages.each do |message| %> - - - - - <% end %> + <% @messages.each do |message| %> + + + + + <% end %>
- <%= message.incoming? ? 'You' : message.user.name %> - : <%= message.content %>
+ <%= message.incoming? ? 'You' : message.user.name %> + : <%= message.content %>
- -

Click <%= link_to 'here', app_conversation_url(id: @conversation.display_id) %> to get back to the conversation.