<?php
$receiverMail = "
[email protected]";
$tipomodulo = ltrim(rtrim(strip_tags(stripslashes($_POST['tipomodulo']))));
$nome = ltrim(rtrim(strip_tags(stripslashes($_POST['nome']))));
$email = ltrim(rtrim(strip_tags(stripslashes($_POST['email']))));
$privacy = ltrim(rtrim(strip_tags(stripslashes($_POST['privacy']))));
$richieste = htmlentities(ltrim(rtrim(strip_tags(stripslashes($_POST['richieste'])))));
//Formattazione email ricevuta
$ip = getenv("REMOTE_ADDR");
$msgformat = "Dati Modulo: \n\nNome: $nome \nEmail: $email \nAcconsento Privacy: $privacy \n\nRichieste: $richieste \n\nIndirizzo IP: ($ip)";
//Formattazione email utente
$msgClient = "Gentile $nome, \nGrazie di averci contattati, le risponderemo nel minor tempo possibile. \n\nDi seguito sono riportati i dati del modulo che ha compilato: \n\nNome: $nome \nEmail: $email \nTrattamento Privacy: $privacy \n\nRichieste: $richieste \n\nIndirizzo IP: ($ip)";
// Validazione Campi obbligatori
if(empty($email))
echo header("location: contatti.php?id=Errore_Email");
if(empty($nome)) {
echo header("location: contatti.php?id=Errore_Nome");
}
elseif(!ereg("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $email)) {
echo header("location: contatti.php?id=Errore_Email");
}
elseif(empty($richieste)) {
echo header("location: contatti.php?id=Errore_richieste");
}
elseif(empty($privacy)) {
echo header("location: contatti.php?id=Errore_privacy");
}
else {
mail($receiverMail, $tipomodulo, $msgformat, "From: $nome <$email>");
mail($email, $tipomodulo, $msgClient, "From: dominio.it <$receiverMail>");
echo header("location: contatti.php?id=conferma"); }
?>