include ('header.php'); ?>
|
if (($_POST['SendContact']=="Enviar") and ($_POST['name']!="") and ($_POST['state']!="") and ($_POST['email']!="") and ($_POST['verification']==$_POST['verifresult']) )
{
echo "Sua mensagem foi encaminhada. Vamos contatá-lo o mais breve possível.
";
mail("mailbox157@fastpace.com.hk","Contact Saa Product, Portuguese","Contact from Saa Product website, Portuguese version\n\nYour name: ".$_POST['name']."\nEmail: ".$_POST['email']."\nCountry: ".$_POST['country']."\nTelephone: ".$_POST['telephone']."\nMessage: ".$_POST['message']."","From: Saa Product \r\n");
$_POST['name']=""; $_POST['state']=""; $_POST['email']=""; $_POST['message']=""; $_POST['telephone']="";
}
else
{
if ($_POST['SendContact']=="Enviar") echo "Por favor, preencha os campos necessários.";
}
?>
* Campo necessário
|
|