I have a form in HTML which sends an email. I have the form setting the subject of the email by adding "?subject=" to the ACTION value for the FORM.

Something like this...
Code:
<FORM METHOD="Post" ACTION="mailto:[email protected]?subject=yada">
BUT I also want to be able to set the body of the email.

Is there a way to imbed the body in the ACTION value (like the way it's done with the ?subject) ????

I have tried "?body=" , but does not work.

Any knowledge? Thanks.