feat: Customisable Email Templates (#1095)
This commit is contained in:
@@ -1,10 +0,0 @@
|
||||
<p>Hi <%= @agent.available_name %>,</p>
|
||||
|
||||
<p>Time to save the world. A new conversation has been assigned to you</p>
|
||||
|
||||
<p>
|
||||
Click <%=
|
||||
link_to 'here',
|
||||
app_account_conversation_url(account_id: @conversation.account_id, id: @conversation.display_id)
|
||||
%> to get cracking.
|
||||
</p>
|
||||
@@ -0,0 +1,7 @@
|
||||
<p>Hi {{user.available_name}},</p>
|
||||
|
||||
<p>Time to save the world. A new conversation has been assigned to you</p>
|
||||
|
||||
<p>
|
||||
Click <a href="{{action_url}}">here</a> to get cracking.
|
||||
</p>
|
||||
@@ -1,10 +0,0 @@
|
||||
<p>Hi <%= @agent.available_name %>,</p>
|
||||
|
||||
<p>Time to save the world. A new conversation has been created in <%= @conversation.inbox.name %></p>
|
||||
|
||||
<p>
|
||||
Click <%=
|
||||
link_to 'here',
|
||||
app_account_conversation_url(account_id: @conversation.account_id, id: @conversation.display_id)
|
||||
%> to get cracking.
|
||||
</p>
|
||||
@@ -0,0 +1,8 @@
|
||||
<p>Hi {{user.available_name}}</p>
|
||||
|
||||
|
||||
<p>Time to save the world. A new conversation has been created in {{ inbox.name }}</p>
|
||||
|
||||
<p>
|
||||
Click <a href="{{ action_url }}">here</a> to get cracking.
|
||||
</p>
|
||||
Reference in New Issue
Block a user