include("scripts/class.phpmailer.php");
include("scripts/class.smtp.php");
?>
// FUNZIONE CONTROLLO FORM CAMPO EMPTY
function chk_frm_empty($frm_key,$frm_tit,$err_msg_prs="") {
global $err_frm,$err_msg;
if (strlen($_POST[$frm_key]) == 0) {
if ($err_msg_prs == "") {
$err_msg=$err_msg."".$frm_tit." è un campo obbligatorio ";
} else {
$err_msg=$err_msg.$err_msg_prs;
}
$err_frm=1;
}
}
// CONTROLLO CAMPO EMAIL PER FORM
function chk_email($frm_key,$frm_tit) {
global $err_frm,$err_msg;
if (!eregi("^[a-z0-9][_\.a-z0-9-]+@([a-z0-9][0-9a-z-]+\.)+([a-z]{2,4})", $_POST[$frm_key])) {
$err_msg=$err_msg."".$frm_tit." è un campo obbligatorio, deve contenere una email esistente ";
$err_frm=1;
}
}
?>
if ($_REQUEST["submit"]<>"") {
global $err_frm,$err_msg;
$mail = new PHPMailer();
$mail->From = $_REQUEST["email"];
$mail->FromName = $_REQUEST["name"];
$mail->AddAddress("info@e-webzone.net");
$mail->Subject = "Richiesta -- Informazioni";
chk_frm_empty("name","Nome");
chk_email("email","E-Mail");
chk_frm_empty("text","Messaggio");
$body.="Nome: ".$_REQUEST["name"]."\n";
$body.="E-mail: ".$_REQUEST["email"]."\n";
$body.="Tel: ".$_REQUEST["phone"]."\n";
$body.="Messaggio: ".$_REQUEST["text"]."\n";
$mail->Body = $body;
if ($err_frm<>1) {
if(!$mail->Send()) {
$err_msg="Si sono verificati degli errori nell'invio della mail contattare il supporto tecnico";
} else {
$snd_ok=1;
$msg_ok="Richiesta inviata correttamente Verrete ricontattati al più presto. Grazie per averci scritto.";
}
}
}
?>
Non esitare a contattarci per un preventivo gratuito!
|
Info
Informazioni classiche di contatto
|
|
|
|