hi all, good job
i write this script at hotscript ::
http://www.hotscript...iled/59330.html
* thi script has 4 file :
config.php :
<?php
$email="admin@fascript.com";
// Type Your email address here
$thxemial="Thank Your for Sending Email to Us";
//Your thanks Note
?>
mail.php:
<?php
include ("config.php");
$sub = $_POST['sub'];
$text = $_POST['text'];
$memail = $_POST['memail'];
mail($email, $sub, $text ,"From: $memail \nReply-To: $memail");
mail($memail, $sub, $thxemial,"From: $email \nReply-To: $email");
?>
Send.htm
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Your Email Address</title>
</head>
<body>
<form method="POST" name="mail" action="mail.php">
<p><font face="Verdana" style="font-size: 8pt">Your Email Address </font></p>
<p><input type="text" name="memail" size="20"></p>
<p><font face="Verdana"><span style="font-size: 8pt">Your Mail Subject</span></font></p>
<p><input type="text" name="sub" size="20"></p>
<p><font face="Verdana" style="font-size: 8pt">Your Mail Body</font></p>
<p><textarea rows="2" name="text" cols="20"></textarea></p>
<p><input type="submit" value="Send Email" name="Submit"></p>
</form>
</body>
</html>
Readme and install :
install ::
1 - open config.php by notepad and wirte your email address at line 2
2 - write your thanks note at line 4
3 - Save config.php and close
4 - Make one form by this code ::
<form method="POST" name="mail" action="mail.php">
<p><font face="Verdana" style="font-size: 8pt">Your Email Address </font></p>
<p><input type="text" name="memail" size="20"></p>
<p><font face="Verdana"><span style="font-size: 8pt">Your Mail Subject</span></font></p>
<p><input type="text" name="sub" size="20"></p>
<p><font face="Verdana" style="font-size: 8pt">Your Mail Body</font></p>
<p><textarea rows="2" name="text" cols="20"></textarea></p>
<p><input type="submit" value="Send Email" name="Submit"></p>
</form>
5 - and enjoy it
Copyright ::
www.fascript.com
You can find next version of this script at
http://famail.fascript.com
if you have question about this script you can send email
I Hope trap17 Members enjoy this script