Results 1 to 6 of 6

Thread: Forms to e-mail

  1. #1
    Join Date
    Nov 2005
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question Forms to e-mail

    hi,
    I'm wondering how to let you'r forms send to your e-mail adres. the <form action="mailto: p.meersschaut@gmail.com" enctype="plain/text"> doesn't work ... he opens the mail program ... but there is no text @ all to see. any1 help me?

    please help me out

  2. #2
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  3. #3
    Join Date
    Nov 2005
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    thankx!

  4. #4
    Join Date
    Nov 2005
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Exclamation

    oke ... now I just got another problem ... I'm new to forms so I don't know how to put it so it mails to my e-mail adress ... here's my web page(test page)


    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>

    <body>
    <form name="formname" method="post" action="http://www.mail-maniac.com" enctype="multipart/form-data">
    <input type="hidden" name="mailto" value="mailto(at)address.com">
    <input type="hidden" name="from" value="mailfrom(at)address.com">
    <input type="hidden" name="subject" value="Subject line">
    <input type="hidden" name="fromname" value="Your name">
    <input type="hidden" name="goto" value="http://www.mail-maniac.com">
    <input type="text" name="sometextfield"><br />
    <input type="text" name="anothertextfield"><br />
    <input type="file" name="filename"><br />
    <input type="submit" name="submit" value="Submit"><br /><br/>
    <a href="http://www.mail-maniac.com" target="_blank"><font size="1" face="Verdana">Mail-Maniac, free HTML email form processor</font></a>
    </form>
    </body>
    </html>
    if any1 could make it so it sends the filled form to : belgiumspecialforce@gmail.com ... I would really apreciate it!!

    or just give me some advice where I should put it.

    greetz
    Philippe

  5. #5
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Code:
     <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    
    <body>
    <form name="formname" method="post" action="http://www.mail-maniac.com" enctype="multipart/form-data">
    <input type="hidden" name="mailto" value="belgiumspecialforce(at)gmail.com">
    <input type="hidden" name="from" value="belgiumspecialforce(at)gmail.com">
    <input type="hidden" name="subject" value="Whatever you want the subject to be">
    <input type="hidden" name="fromname" value="Your name">
    <input type="hidden" name="goto" value="The page to go to after submitting (absolute URI)">
    
    <!-- Your form goes here, minus <form>, </form> and <input type="submit"> tags -->
    
    <input type="submit" name="submit" value="Submit"><br /><br/>
    <a href="http://www.mail-maniac.com" target="_blank"><font size="1" face="Verdana">Mail-Maniac, free HTML email form processor</font></a>
    </form>
    </body>
    </html>
    Edit the italic bits to suit your preferences. The bold bits MUST be there.
    Last edited by Twey; 11-06-2005 at 01:44 PM.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  6. #6
    Join Date
    Nov 2005
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    thanx m8!

Bookmarks

Posting Permissions

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