why do you need some gdform.. ?
make your own form.. and send the mail to you
using the mail
[/url]
Moderators: macek, egami, gesf
<body>
<div align="center">
<form action="../gdform.php" method="post">
<input type="hidden" name="subject" value="Form Results">
<input type="hidden" name="redirect" value="index.html">
<input type="hidden" name="Print_Config" value="FromName">
<input type="hidden" name="required" value="FromName,FromEmail">
<input type="hidden" name="Print_Blank" value="yes">
<strong>
Select a recipient:</strong><br>
<input type="radio" name="recipient" value="email address one" checked> Webmaster<br>
<input type="radio" name="recipient" value="email address two"> Dr. Jeffry Finnigan<br><br>
Name:
<input type="text" name="FromName" size="30"><br>
Email:
<input type="text" name="FromEmail" size="30">
<br>
<br>
How did you hear about our site? <br>
<input type="text" name="HeardFrom" size="55">
<br>
<br>
Comments or Questions? <br>
<textarea rows="10" name="comments" cols="50"></textarea>
<br>
<input name="submit" type="submit" class="button" value="Submit" >
</form>
</div>
</body>


<html>
<head>
<title>PHP qdform Mail</title>
</head>
<body>
<form action="mailer.php" method="POST">
<strong>Select a recipient:</strong><br>
<input type="radio" name="recipient" value="email@emailaddress.com" checked> Webmaster<br>
<input type="radio" name="recipient" value="email2@emailaddress.com"> Dr. xxx xxxx<br><br>
Name: <input type="text" name="From_Name"><br>
Email: <input type="text" name="From_Email" size="24"><br><br>
How did you hear about our website?<br>
<input type="text" name="Heard_From" size="50"><br><br>
Comments or questions:<br>
<textarea rows="10" name="Comments" cols="50"></textarea><br><br>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>
<?
// Your thank you site.
$thankyou="http://www.beyondheadaches.com/mail/index.html";
// Your Email addy
$email=$recipient;
mail($email, 'Question or comment from Beyond Headaches.com', print_r($_POST,true).'\n END');
echo "<script>location.replace('index.html');</script>";
?>
Users browsing this forum: No registered users and 1 guest