hi all, this is my action script :
<?php
$emailto="info@xtremecafe.net";
$from = "From: $name <$email>";
$subject = "Contact XtremeCafe.net";
mail("$emailto", "$subject", "$name has made a contact for
info@xtremecafe.net
\nTheir e-mail is $email
\n\nTheir Message :\n $message","$from");
header("Location: contact_thanks.php");
?>
Can you help me, what possibly the mistake?