Chore: Change the prefix in reply emails (#1060)

* Chore: Change the prefix in reply emails

In conversation continuity the reply to email was looking like

reply+to+{some_random_hex_id}@reply.chatwoot.com

Changed the prefix to just `reply` instead of `reply+to`.

* Chore: Change reply email prefix in outbound emails

Changed the prefix from `reply+to+` to just `reply+` in
the reply emails in the converstaion related outbound emails.
This commit is contained in:
Sony Mathew
2020-07-19 13:34:34 +05:30
committed by GitHub
parent 642efe8d40
commit 7ef45e5844
5 changed files with 7 additions and 7 deletions

View File

@@ -55,7 +55,7 @@ class ConversationReplyMailer < ApplicationMailer
def reply_email
if custom_domain_email_enabled?
"reply+to+#{@conversation.uuid}@#{@account.domain}"
"reply+#{@conversation.uuid}@#{@account.domain}"
else
@agent&.email
end