From d692eac260b06bf41c2788d100141e4230207033 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E0=A4=AA=E0=A5=8D=E0=A4=B0=E0=A4=A5=E0=A4=AE=E0=A5=87?= =?UTF-8?q?=E0=A4=B6=20Sonpatki?= Date: Sun, 7 Mar 2021 20:42:45 +0530 Subject: [PATCH] chore: Add name to the sender email id (#1485) --- app/mailers/application_mailer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/mailers/application_mailer.rb b/app/mailers/application_mailer.rb index 9513056fe..12341e30c 100644 --- a/app/mailers/application_mailer.rb +++ b/app/mailers/application_mailer.rb @@ -1,7 +1,7 @@ class ApplicationMailer < ActionMailer::Base include ActionView::Helpers::SanitizeHelper - default from: ENV.fetch('MAILER_SENDER_EMAIL', 'accounts@chatwoot.com') + default from: ENV.fetch('MAILER_SENDER_EMAIL', 'Chatwoot ') before_action { ensure_current_account(params.try(:[], :account)) } around_action :switch_locale layout 'mailer/base'