fix support emailing

This commit is contained in:
Kyle Drake 2014-07-22 10:49:31 -07:00
parent 36f7603142
commit 64914a7ebe

4
app.rb
View file

@ -173,8 +173,8 @@ post '/plan/create' do
EmailWorker.perform_async({ EmailWorker.perform_async({
from: 'web@neocities.org', from: 'web@neocities.org',
reply_to: current_site.email, reply_to: 'contact@neocities.org',
to: 'contact@neocities.org', to: current_site.email,
subject: "[Neocities] You've become a supporter!", subject: "[Neocities] You've become a supporter!",
body: Tilt.new('./views/templates/email_subscription.erb', pretty: true).render(self, plan_name: plan_name) body: Tilt.new('./views/templates/email_subscription.erb', pretty: true).render(self, plan_name: plan_name)
}) })