eccoti fatto il codice
Codice PHP:
if (isset($_POST['mail_mittente']) && isset($_POST['testo'])) {
$testo = $_POST['testo'];
$testo = addslashes(stripslashes($testo));
$testo = str_replace("<", "<", $testo);
$testo = str_replace(">", ">", $testo);
$testo = nl2br($testo);
$headers = "From: $NomeSito /nContent-Type: text/html; charset=iso-8859-1\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
$testo_elaborato = "Hai ricevuto una mail da parte di un visitatore di $NomeSito <br />Questa mail e stata spedita dal sito: http://dharlet.altervista.org <br />ed e stato spedito da parte di: ".$_POST['mail_mittente']." <br /> ".$testo;
if (@mail('miamail@mail.it', 'hai ricevuto una mail da '.$NomeSito, $testo_elaborato, $headers)) {
echo "<script language=\"JavaScript\" type=\"text/javascript\">alert('mail inviata correttamente');</script>";
} else {
echo "<script language=\"JavaScript\" type=\"text/javascript\">alert('Invio mail fallito');</script>";
}
}