<script language="php">

$Att = "From: " . $email . "\nReply-To: " . $email;
$Subj = "Richiesta di preventivo inviata tramite il sito legnoe.it";
$text = "E' stato richiesto un preventivo relativo ai seguenti Vostri prodotti:\n\n";
$Nome .= "Nome: " . $nome . "\n";
$Cognome .= "Cognome: " . $cognome ."\n";
$Città .= "Città: " . $città . "\n";
$Email .= "Email: " . $email . "\n";
$Oggetto .= "Sub: " . $sub . "\n";
$Prodotto .= "Prodotto: " . $prodotto . "\n";
$Quantità .= "Quantità: " . $quantità . "\n";
$Azienda .= "Azienda: " . $azienda . "\n";
$Telefono .= "Telefono: " . $telefono . "\n";
$Fax .= "Fax: " . $fax . "\n";




if (mail("info@stefanopisciella.it", $Subj, $Text, $Att))
{
echo("Messaggio inviato correttamente.");
}
else {
echo("Messaggio non inviato a causa di errore.");
}

</script>