Results 1 to 4 of 4

Thread: Sending online forms through mail.

  1. #1

    Thread Starter
    Fanatic Member kinjalgp's Avatar
    Join Date
    Apr 2000
    Location
    India
    Posts
    535
    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

  2. #2
    Hyperactive Member
    Join Date
    Mar 2000
    Posts
    292
    <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."

  3. #3

    Thread Starter
    Fanatic Member kinjalgp's Avatar
    Join Date
    Apr 2000
    Location
    India
    Posts
    535
    Thanks a lot noone.

    Kinjal

  4. #4
    Hyperactive Member Zaphod64831's Avatar
    Join Date
    Mar 2000
    Posts
    268

    Lightbulb

    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.
    Email: [email protected]

    Home Page: www.olemac.net/~hutch

    I'm bored, VERY bored, and I got bored with my sig. So I changed it to this.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width