Results 1 to 2 of 2

Thread: Help! Form won't work in Internet Explorer!
      
   

  1. #1
    evanjackson is offline Private
    Join Date
    Sep 2008
    Posts
    1

    Default Help! Form won't work in Internet Explorer!

    Hello,

    I'm trying to create a form and have the information automatically emailed to me. Here's the code:

    <form action="mailto:evan****.com" method="post" enctype="text/plain" name="request_info" id="request_info">
    <p><label for="First Name">First name: </label>
    <input name="First Name" type="text" id="First Name" maxlength="255" />
    &nbsp;&nbsp;&nbsp;&nbsp;
    <label for="Last Name">Last Name: </label>

    <input name="Last Name" type="text" id="Last Name" maxlength="255" />
    </p>

    <p>
    <label for="Street Address">Street Address: </label>
    <input name="Street Address" type="text" id="Street Address" size="50" maxlength="255" />
    </p>
    <p><label for="City">City: </label>
    <input name="City" type="text" id="City" maxlength="255" />
    &nbsp;&nbsp;&nbsp;&nbsp;
    <label for="State">State: </label>
    <input name="State" type="text" id="State" size="2" maxlength="255" />
    </p>
    <p>
    <label for="Zip Code">Zip Code: </label>
    <input name="Zip Code" type="text" id="Zip Code" maxlength="255" />
    &nbsp;&nbsp;&nbsp;&nbsp;
    <label for="Email">E-mail address: </label>
    <input name="Email" type="text" id="Email" maxlength="255" />
    </p>
    <p align="center">
    <label for="submit"></label>
    <input type="submit" name="submit" id="submit" value="Submit" />
    </p>
    </form>

    It works fine in Firefox, but when I try to do it in Internet Explorer Outlook opens a blank email...it has the correct email address but there's no data...it's just blank. Any ideas?

    Thanks!

  2. #2
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,115

    Default Re: Help! Form won't work in Internet Explorer!

    Forms that use your own email client to send the mail, will fail in most cases as they rely on the setings of Outlook Express or other mail client. Since you can't control the settings on your visitors computers, in most cases this will fail.

    Use the Form Wizard to create a form processed by the built in Form Processor. This way it will work for everyone.
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49