|
-
Jun 12th, 2000, 01:10 AM
#1
Thread Starter
Fanatic Member
I have one order form on my site which has some text fields. When the user fills the text fields and presses the submit button, I want the data from all text fields to be mailed to me therough clients default mail software. Can anyone tell me how this is done ? Please.
Thanks a lot in advance
Kinjal
-
Jun 12th, 2000, 07:05 AM
#2
Hyperactive Member
<form name ="xxx" action="mailto:[email protected]">
stuff here
</form>
"People who think they know everything are a great annoyance to those of us who do."
-
Jun 12th, 2000, 10:05 PM
#3
Thread Starter
Fanatic Member
-
Jun 13th, 2000, 09:24 AM
#4
Hyperactive Member
Noone is close, but in that format it will be sent in an annoying manner that's a little difficult to read. Here's an easier way of putting it:
Code:
<form name="xxx" action="mailto:[email protected]" enctype="text/plain" method="Post">
form elements here
</form>
This way it will come out directly in your email, instead of as an attachment.
Also, to change the subject from "Internet Explorer blah blah blah" just add this to the email address:
Code:
?subject=Web%20Site
Or whatever you want the subject to be. Just make sure you put "%20" in where you want the spaces.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|