From 64914a7ebe97fc1e57e084997953aa8f158e4e4a Mon Sep 17 00:00:00 2001 From: Kyle Drake Date: Tue, 22 Jul 2014 10:49:31 -0700 Subject: [PATCH] fix support emailing --- app.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.rb b/app.rb index c83347ce..4d82ef0b 100644 --- a/app.rb +++ b/app.rb @@ -173,8 +173,8 @@ post '/plan/create' do EmailWorker.perform_async({ from: 'web@neocities.org', - reply_to: current_site.email, - to: 'contact@neocities.org', + reply_to: 'contact@neocities.org', + to: current_site.email, subject: "[Neocities] You've become a supporter!", body: Tilt.new('./views/templates/email_subscription.erb', pretty: true).render(self, plan_name: plan_name) })