From 3ebd70816c06924612526cdad3d6ce38d1c63c50 Mon Sep 17 00:00:00 2001 From: Jon Bauman Date: Mon, 30 Dec 2019 20:17:24 -0800 Subject: [PATCH] Fix fallback to be simpler --- app/mailers/user_mailer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/mailers/user_mailer.rb b/app/mailers/user_mailer.rb index d978b0a..0ccacf0 100644 --- a/app/mailers/user_mailer.rb +++ b/app/mailers/user_mailer.rb @@ -226,7 +226,7 @@ def get_address(input) elsif defined?(@@active_user) && !@@active_user.nil? email = @@active_user.email else - email = "jon.#{email.sub('@', '.at.')}@shumi.org" + email = "jon.ccsubs_fallback@shumi.org" end name ? "\"#{name}\" <#{email}>" : email