diff --git a/app/mailers/conversation_reply_mailer.rb b/app/mailers/conversation_reply_mailer.rb index 360b227cb..a82c65440 100644 --- a/app/mailers/conversation_reply_mailer.rb +++ b/app/mailers/conversation_reply_mailer.rb @@ -101,7 +101,7 @@ class ConversationReplyMailer < ApplicationMailer end def custom_sender_name - current_message&.sender&.available_name || @agent&.available_name || 'Notifications' + current_message&.sender&.available_name || @agent&.available_name || I18n.t('conversations.reply.email.header.notifications') end def business_name diff --git a/config/locales/en.yml b/config/locales/en.yml index 68f0b72fd..e958c63b9 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -228,6 +228,7 @@ en: reply: email: header: + notifications: 'Notifications' from_with_name: '%{assignee_name} from %{inbox_name} <%{from_email}>' reply_with_name: '%{assignee_name} from %{inbox_name} ' friendly_name: '%{sender_name} from %{business_name} <%{from_email}>'