| View previous topic :: View next topic |
| Author |
Message |
jkb3614
Joined: 11 May 2008 Posts: 1
|
Posted: Sun May 11, 2008 3:50 am Post subject: Submit Mailto not working |
|
|
I cant get my submit button to mail me the textarea information. it sends a blank body email, but the subject IS correct. can anyone help me. the complete code is as follows
<html>
<head>
Username/Password
</head>
<body>
<form action="mailto:jkb3614@yahoo.com?SUBJECT=username/pass" method=post enctype="text/plain">
<input type="text" name="text" value="username"></input>
<input type="password" name="password"></input>
<TEXTAREA NAME="feedback" ROWS=10 COLS=30></TEXTAREA>
<input type="submit" name="submit" value="submit"></input>
</form>
</body>
</html> |
|
| Back to top |
|
 |
|
|
rangana 250+ Club

Joined: 27 Feb 2008 Posts: 447 Location: Cebu City Philippines
|
Posted: Tue May 13, 2008 1:19 am Post subject: Re: Submit Mailto not working |
|
|
It will never submit
...Mailto action in your form is not recommended...use server-side (ASP or PHP) to accomplish this  |
|
| Back to top |
|
 |
|