Thread: Email form
View Single Post

  #11 (permalink)  
Old 05-06-08, 11:20
maruti kumar maruti kumar is offline
Junior Member
 
Join Date: Jun 2008
Posts: 2
Rep Power: 0
maruti kumar is on a distinguished road
Re: Email form

Quote:
Originally Posted by Flep View Post
Hi maruti,
let me see the PHP you are using please.
Hi flep, the php code is;
the same code
$to = "info@flepstudio.org";
$subject = ($_POST['titolo']);
$message = ($_POST['messaggio']);
$message .= "\n\n---------------------------\n";
$message .= "E-mail inviata da: " . $_POST['nome'] . " <" . $_POST['email'] . ">\n";
$headers = "From: " . $_POST['nome'] . " <" . $_POST['email'] . ">\n";
if(@mail($to, $subject, $message, $headers))
{
echo "answer=ok";
}
else
{
echo "answer=error";
}
?>




thanks,
Maruti Kumar
Reply With Quote