Bug: Update conversation urls in email (#649)

Update the conversation URLs in email templates.
This commit is contained in:
Pranav Raj S
2020-03-29 09:34:57 +05:30
committed by GitHub
parent 50ebbc13b6
commit 6c48f2e789
3 changed files with 15 additions and 3 deletions

View File

@@ -2,4 +2,9 @@
<p>Time to save the world. A new conversation has been assigned to you</p>
<p>Click <%= link_to 'here', app_conversation_url(id: @conversation.display_id) %> to get cracking. </p>
<p>
Click <%=
link_to 'here',
app_account_conversation_url(account_id: @conversation.account_id, id: @conversation.display_id)
%> to get cracking.
</p>

View File

@@ -2,4 +2,9 @@
<p>Time to save the world. A new conversation has been created in <%= @conversation.inbox.name %></p>
<p>Click <%= link_to 'here', app_conversation_url(id: @conversation.display_id) %> to get cracking. </p>
<p>
Click <%=
link_to 'here',
app_account_conversation_url(account_id: @conversation.account_id, id: @conversation.display_id)
%> to get cracking.
</p>