Results 1 to 7 of 7

Thread: Email Form...

  1. #1

    Thread Starter
    PowerPoster Pc_Madness's Avatar
    Join Date
    Dec 2001
    Location
    Melbourne, Australia
    Posts
    2,765

    Email Form...

    Ok... I'm ashamed to ask, but does anyone have an example of a HTML Form that I can use to Send Emails???

    I've finally found a host that offers CGI Hosting, and I need some code that I'm certain will work.

    Thanks in Advance
    Don't Rate my posts.

  2. #2
    Hyperactive Member progressive's Avatar
    Join Date
    Sep 2001
    Location
    Manchester, UK
    Posts
    404
    google for 'perl sendmail' !

    You'll probbaly want to learn the basics of perl as well try the webmonkey tutorial thats how i got started

  3. #3
    New Member
    Join Date
    Aug 2002
    Location
    lebanon
    Posts
    13
    Hi try this form, and if u didnt like it you can edit it.
    ____________________________________________________
    <html>
    <body>
    <form action="MAILTO:[email protected]" method="post" enctype="text/plain">

    <h3>This form sends an e-mail to W3Schools.</h3>
    Name:<br>
    <input type="text" name="name"
    value="yourname" size="20">
    <br>
    Mail:<br>
    <input type="text" name="mail"
    value="yourmail" size="20">
    <br>
    Comment:<br>
    <input type="text" name="comment"
    value="yourcomment" size="40">
    <br><br>
    <input type="submit" value="Send">
    <input type="reset" value="Reset">

    </form>
    </body>
    </html>
    ____________________________________________________

  4. #4
    Member
    Join Date
    Jun 2002
    Posts
    53
    what internet explorer are you using? because that doesn't work for me!
    Platty rules

  5. #5
    New Member
    Join Date
    Aug 2002
    Location
    lebanon
    Posts
    13
    hi Platty,
    ...iam using internet explorer 5.5
    Any Problem made by man is solved by man.

  6. #6
    Member
    Join Date
    Jun 2002
    Location
    Delaware
    Posts
    33
    i use that and msn....but with 5.5 it brings up outlook express and with msn it brings up hotmail.
    <html>
    <marquee behavior="alternate" width=50%> This is a test </marquee>

  7. #7
    Member
    Join Date
    Jun 2002
    Location
    Delaware
    Posts
    33
    i had to use <form action="send.php"> because the "mailto:" script was bringing up outlook express or msn mailer....try using the send.php and use this script in it:

    <html><title>Email Sent to Webmaster</title>
    <?php
    mail("[email protected]", $subject, $message) ;
    ?></html>

    change the name of your comment box to message and the name box to subject...good luck
    <html>
    <marquee behavior="alternate" width=50%> This is a test </marquee>

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