Hi, I already have the form layout and everything, I just need somene to do the ACTION= part of submitting the form so that the details in the form get sent to a specified email address. Looking for quick turnaround on this one. PM me if interested. Thanks,
fyi, you can do action="mailto:you@domain.com" or quick php script... Say you have contact.html make new one or rename to .. contact.php Put this code where your message comes up "Please fill out this form" and in the form, action="<?=$PHP_SELF?>" <? $formmsg="Please fill out this form"; if(isset($_POST['Email'])) { foreach($_POST as $var=>$val) { $body.="$var = $val\n"; } mail("you@domain.com","Email Response Form","$body","From: "); $formmsg="Thank you"; } ?> That will post the form to itself and email you the form fields/values pairs. If you need something custom, PM me.