I'm having a problem? with my form sending me the content of a form. The e-mail program opens and a file is attached but there is no destination address filled in. Is it supposed to address and send the form contents? My code is below. <FORM METHOD=POST ACTION="mailto:ttofohio@earthlink.net" > <INPUT TYPE="submit" VALUE="Submit the Form">
It's certainly because you didn't insert any valid submission control in your form (<input> or <textarea> for example). Try this for example, it's working: <html> <head> </head> <body> <form method="POST" action="mailto:ttofohio@earthlink.net" > <input type="hidden" name="status" lang="en" xml:lang="en" value="working!" /> <input type="submit" value="Submit the Form" /> </form> </body> </html> Good luck. "Thomas Troutwine" a crit dans le message de news: u6Zuf.2732$%W1.1660@newsread2.news.atl.earthlink.net... > I'm having a problem? with my form sending me the content of a form. > The e-mail program opens and a file is attached but there is no > destination > address filled in. Is it supposed to address and send the form contents? > My code is below. > > <FORM METHOD=POST ACTION="mailto:ttofohio@earthlink.net" > > > <INPUT TYPE="submit" VALUE="Submit the Form"> > >