riuscite voi a vedere l'errore io no
PHP:
<?php
foreach($_POST as $key=>$value) $_POST[$key] = htmlspecialchars($value);
$colore_sfondo="#82C0FF";
$colore_testo="#FFFF80";
$font="verdana";
$font_size=2;
$nome = "MIME-Version: 1.0\r\n";
$nome .= "Content-type: text/html; charset=iso-8859-1\r\n";
//intestazioni per il mittente
$nome .= "From: Papillon-Events<www.papillon-events.it>\r\n";
$testo="<html><head><title>Papillon-Events E.mail</title></head><body bgcolor=\"" . $colore_sfondo . "\">"; //non occorre specificare attributi per il tag title, tuttavia li inseriamo per correttezza. Tenete presente che potete inserire style.
$testo.="<font face=\"sans-serif, Arial, Verdana" . $font . "\" size=\"12" . $font_size . "\" colore=\"#0000FF" . $colore_testo . "\">Questa email ti è stata inviata dal sito.<br> L'utente " . $_POST['nome'] . " $_POST['testo'] . " (a cui puoi rispondere a: <a href=\"mailto:" . $_POST['email'] . "\">" . $_POST['email'] . "</a>), <br>Ti ha scritto: " . $_POST['commento'] . "</font>";
$commento.="</body></html>";
if($email==""){
echo "Non hai inserito la tua email";
} elseif($testo==""){
echo " Non hai inserito il motivo del contatto";
} elseif($commento==""){
echo " Non hai inserito il commento";
} elseif($commento==""){
echo " Non hai inserito il commento";
}
else{
mail( "[email protected]", "Invio email da: " . $_POST['nome'] . " $_POST['testo'] . " $_POST['commento'] . " $_POST['email'], );
echo " la tua email è stata inviata";
}
?>