Are there any good html forms for emails ect...?
+rep for help
I want it to include things like full name, number, email address, ect... the rest i can proberly do![]()

Are there any good html forms for emails ect...?
+rep for help
I want it to include things like full name, number, email address, ect... the rest i can proberly do![]()
So you're looking for a Form that Sends an E-mail to yourself, with the DATA entered by the user. ~ For a Full one, (your proberbly not looking to buy one) but you're looking at £1.50 from me. P/M me if you want one?
Kind Regards,
Ryan
I mate of mine has a script like that... I will ask if I can have it to give to you...
Edit: Do you want it with a php backend which sends it you or so that it auto loads up the email in an editor?
Last edited by Chippiewill; 04-06-2009 at 08:54 PM.
Chippiewill.
Thanks, im not paying for it so ye get lost. never the less chips that would be great if you could get me one, im sure there used to be one out there that could be like
Full name
comments
then the email you put down when it was in the persons email address it would say its from them, even if its not verified or anything (?)
Ross
Sheesh, if only Dreamweaver loaded faster.
No idea if this will work. Quickly mopped it up.
Edit: All you have to do is change your email, $your_email = 'youremailgoeshere1111'; and it should work.PHP Code:<?php
// begin switch statement!
switch ( $_GET['mail'] )
{
default:
// Begin displaying "THE BOX!"
echo( "<form method='post' action='?mail=1'>" );
echo( "Email: <input type='text' name='email' size='20' />" );
echo( "<br /><br />" );
echo( "Full Name: <input type='text' name='full_name' size='20' />" );
echo( "<br /><br />" );
echo( "Comments: <input type='text' name='comments' size='20' />" );
echo( "<br /><br />" );
echo( "<input type='submit' name='submit' value='Submit!' />" );
echo( "<br /><br />" );
echo( "</form>" );
break;
// start secondary case/executed case
case '1':
if ( (!isset( $_POST['email'] )) || (!isset( $_POST['full_name'] )) || (!isset( $_POST['comments'] )) )
{
die( "Please try again... you didn't submit all the data!" );
}
$ip = $_SERVER['REMOTE_ADDR'];
$email_address = $_POST['email'];
$email_name = $_POST['full_name'];
$email_comment = $_POST['comments'];
$your_email = 'youremailgoeshere1111';
$email_subject = 'Mail Form.';
$message_headers = 'From: ' . $your_email . '\r\nReply-To: ' . $your_email . '\r\n X-Mailer: PHP: ' . phpversion();
$email_full = 'Message from: ' . $email_name . ' at ' . $email_address . '<br /><br />Comment: ' . $email_comment . '<br /><br />Sent from your mailing system!';
mail( $your_email, $email_subject, $email_full, $message_headers );
break;
}
?>
Feel free to change it in anyway, or use it anyway!
Last edited by Jam-ez; 05-06-2009 at 04:08 PM. Reason: messed with some code.
Wufoo is my recommendation, you can do all sorts with your forms, and you get 3 for free: http://www.wufoo.com
Dynaform is quite useful: http://www.2mhelpdesk.com/resources/dynaform10.zip
Thats a php form, is there not html forms?
http://www.**********/forum/showthre...t=31598&page=1
is what i had a shot at using, im wanting the email its being sent to as perminant, so it only shows
'Your 'spoofed' email:
Your 'spoofed' name:
Subject line of letter: '
and obv enter message below, so the email its being sent to cannot be changed or doesnt display but it gets sent there
+Rep for help
Ross
thats ***** the link to it is
http://www.digi-dl.com/free_stuff/sendMail.zip
its clean iv virus checked.
I don't understand what you mean. With just HTML it'd be way too hard, if not impossible to send an email from the form? The code I posted does use a html form, it's just echo'd in php. If you wanted you could just take out the echos and end then reopen the php for a html form...
Want to hide these adverts? Register an account for free!