From 143b9fae7fceae63e9b6b1dd63a783b2582603cb Mon Sep 17 00:00:00 2001 From: Matthew Zagaja Date: Sat, 12 Oct 2024 12:41:14 -0400 Subject: [PATCH] Fix Password Reset Not Working This initializer is likely the source of our frustrations where SendGrid was complaining the email we were sending from was not correct. --- backend/config/initializers/devise.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/config/initializers/devise.rb b/backend/config/initializers/devise.rb index a0eabe66..1c1a0d39 100644 --- a/backend/config/initializers/devise.rb +++ b/backend/config/initializers/devise.rb @@ -26,7 +26,7 @@ # Configure the e-mail address which will be shown in Devise::Mailer, # note that it will be overwritten if you use your own mailer class # with default "from" parameter. - config.mailer_sender = 'please-change-me-at-config-initializers-devise@example.com' + config.mailer_sender = 'help@bostonhpa.org' # Configure the class responsible to send e-mails. # config.mailer = 'Devise::Mailer'