Hej,
jak mam tak:
body {:user => user, :url => "http://awsome.url" }
to mam taki błąd:
SyntaxError: /home/slawosz/projekty/rails/project/app/models/user_mailer.rb:11: syntax error, unexpected tASSOC, expecting '}'
body {:user => user, :url => "http://awsome.url" }
^
/home/slawosz/projekty/rails/project/app/models/user_mailer.rb:11: syntax error, unexpected tASSOC, expecting tCOLON2 or '[' or '.'
body {:user => user, :url => "http://awsome.url" }
Ale już tak jest ok:
body_hash = {:user => user, :url => "http://awsome.url" }
body body_hash
WTF?
Sławosz