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={})
Mail.deliver do
from args['from']
to args['to']
subject args['subject']
body args['body']
from args['from']
reply_to args['reply_to']
to args['to']
subject args['subject']
body args['body']
end
end
end