In rails, I want the user to hit the mailto button and then call the method 'mail' in controller 'home' , how you do that??
Here is my code, it seems doesnt work well...
= mail_to boss.email :subject=>boss.subj,
:body=>"hi boss", :action=>'home#mail'
And is there anyway can make mail_to open a new windows to my mail box?
now when I hit mail_to and then select gmail (firefox ubuntu), then I go straight to gmail...
I want it open in new windows... anyway to do it in rails?