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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user