From fef338da429a318b02154cfa3c3308fa41f21c2e Mon Sep 17 00:00:00 2001 From: Matthew Zagaja Date: Wed, 2 Oct 2024 00:42:06 +0000 Subject: [PATCH] Update default from address to a mailbox that actually works (it forwards to mattz@codeforboston.org currently). Co-authored-by: mcarre20 Co-authored-by: Anna Westland-Tegart Co-authored-by: Andrew Co-authored-by: Mike Lynch Co-authored-by: Laura Filmeyer --- backend/app/mailers/application_mailer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/mailers/application_mailer.rb b/backend/app/mailers/application_mailer.rb index d84cb6e7..7883c532 100644 --- a/backend/app/mailers/application_mailer.rb +++ b/backend/app/mailers/application_mailer.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true class ApplicationMailer < ActionMailer::Base - default from: 'from@example.com' + default from: 'help@bostonhpa.org' layout 'mailer' end