<?php
if(isset($_POST['invia']))
{
if(empty($_POST['motivo']))
$errore[$guestField][]= "Non hai inserito l'oggetto nel campo obbligatorio<br />";
if(empty($_POST['testo']))
$errore[$guestField][]= "Non hai inserito il testo<br />";
if(!isset($errore[$guestField]))
{
$nome = $_POST['nome'];
$testo = $_POST['testo'];
$motivo = $_POST['motivo'];
$lettera = "Messaggio (oggetto: $motivo) : $testo";
if(mail("mymail@dominio.it", "Dagli utenti", $lettera,"From:
mymail@dominio.it"))
{
echo "<script>alert(\"La mail è stata spedita con successo\")</script>";
}
else $errore[] = "Problemi nel mandare l'email....";
}
}
?>
<body>
<form method = "POST" action = "<?php echo $_SERVER['PHP_SELF'];?>">
Nome: <input type = "text" name = "Nome" /><br />
Oggetto: <input type = "text" name = "Motivo" /><br />
<textarea cols = "50" rows = "10" name = "testo">inserire testo</textarea><br /> <br />
<input type = "submit" name = "invia" value = "invia" />
</div>
</form>
<?php
if(isset($error))
foreach($error[] as $key => $value) echo $value;
?>