|
-
Jul 29th, 2002, 07:54 AM
#1
Thread Starter
PowerPoster
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
-
Jul 29th, 2002, 08:28 AM
#2
Hyperactive Member
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
-
Aug 3rd, 2002, 07:44 AM
#3
New Member
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>
____________________________________________________
-
Aug 9th, 2002, 11:24 AM
#4
Member
what internet explorer are you using? because that doesn't work for me!
 Platty rules 
-
Aug 11th, 2002, 07:23 AM
#5
New Member
hi Platty,
...iam using internet explorer 5.5
Any Problem made by man is solved by man.
-
Aug 12th, 2002, 05:11 PM
#6
Member
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>
-
Aug 15th, 2002, 01:30 PM
#7
Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|