diff --git a/app/views/mailers/agent_notifications/conversation_notifications_mailer/conversation_assignment.liquid b/app/views/mailers/agent_notifications/conversation_notifications_mailer/conversation_assignment.liquid
index 18cd21e75..d59672dc8 100644
--- a/app/views/mailers/agent_notifications/conversation_notifications_mailer/conversation_assignment.liquid
+++ b/app/views/mailers/agent_notifications/conversation_notifications_mailer/conversation_assignment.liquid
@@ -4,25 +4,25 @@
{% for chat_message in conversation.recent_messages %}
-
- {% if chat_message.content %}
- {{chat_message.content}}
- {% endif %}
+
+ {% if chat_message.content %}
+ {{chat_message.content}}
+ {% endif %}
- {% if chat_message.attachments %}
- {% for attachment in chat_message.attachments %}
- Attachment [
Click here to view]
- {% endfor %}
- {% endif %}
-
+ {% if chat_message.attachments %}
+ {% for attachment in chat_message.attachments %}
+ Attachment [
Click here to view]
+ {% endfor %}
+ {% endif %}
{% endfor %}
diff --git a/app/views/mailers/agent_notifications/conversation_notifications_mailer/conversation_creation.liquid b/app/views/mailers/agent_notifications/conversation_notifications_mailer/conversation_creation.liquid
index d7dac7cca..e2d952777 100644
--- a/app/views/mailers/agent_notifications/conversation_notifications_mailer/conversation_creation.liquid
+++ b/app/views/mailers/agent_notifications/conversation_notifications_mailer/conversation_creation.liquid
@@ -7,24 +7,24 @@
{% for chat_message in conversation.recent_messages %}
- {% if chat_message.sender == user.available_name %}
-
You
- {% else %}
- {{chat_message.sender}}
+
+ {% if chat_message.sender == user.available_name %}
+ You
+ {% else %}
+ {{chat_message.sender}}
+ {% endif %}
+
+
+
+
+ {% if chat_message.content %}
+ {{chat_message.content}}
+ {% endif %}
+
+ {% if chat_message.attachments %}
+ {% for attachment in chat_message.attachments %}
+ Attachment [
Click here to view]
+ {% endfor %}
{% endif %}
-
-
-
- {% if chat_message.content %}
- {{chat_message.content}}
- {% endif %}
-
- {% if chat_message.attachments %}
- {% for attachment in chat_message.attachments %}
- Attachment [Click here to view]
- {% endfor %}
- {% endif %}
-
-
{% endfor %}
diff --git a/app/views/mailers/agent_notifications/conversation_notifications_mailer/conversation_mention.liquid b/app/views/mailers/agent_notifications/conversation_notifications_mailer/conversation_mention.liquid
index 00cb13e1e..193c0c015 100644
--- a/app/views/mailers/agent_notifications/conversation_notifications_mailer/conversation_mention.liquid
+++ b/app/views/mailers/agent_notifications/conversation_notifications_mailer/conversation_mention.liquid
@@ -8,25 +8,25 @@
Previous messages:
{% for chat_message in conversation.recent_messages %}
- {% if chat_message.sender == user.available_name %}
-
You
- {% else %}
- {{chat_message.sender}}
- {% endif %}
+
+ {% if chat_message.sender == user.available_name %}
+ You
+ {% else %}
+ {{chat_message.sender}}
+ {% endif %}
+
-
-
- {% if chat_message.content %}
- {{chat_message.content}}
- {% endif %}
+
+ {% if chat_message.content %}
+ {{chat_message.content}}
+ {% endif %}
- {% if chat_message.attachments %}
- {% for attachment in chat_message.attachments %}
- Attachment [
Click here to view]
- {% endfor %}
- {% endif %}
-
+ {% if chat_message.attachments %}
+ {% for attachment in chat_message.attachments %}
+ Attachment [
Click here to view]
+ {% endfor %}
+ {% endif %}
{% endfor %}