last fix to contact

This commit is contained in:
Kyle Drake 2013-07-13 16:52:27 +02:00
parent 5e4c54faf2
commit f059772d5e

View file

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