fix password reset, fix ip blocker, turn off js for now

This commit is contained in:
Kyle Drake 2013-07-12 07:04:01 +02:00
parent 6245319bc1
commit 93f7918340
4 changed files with 21 additions and 8 deletions

View file

@ -4,10 +4,10 @@ class EmailWorker
def perform(args={})
Mail.deliver do
from args[:from]
to args[:to]
subject args[:subject]
body args[:body]
from args['from']
to args['to']
subject args['subject']
body args['body']
end
end
end