include("adodb5/adodb.inc.php");
include("dati_connessione.inc.php");
//DATI PER LA CONNESSIONE
$objConn = ADONewConnection($dbdriver); # eg 'mysql' or 'postgres'
$objConn->SetFetchMode(ADODB_FETCH_ASSOC);
$objConn->Connect($server, $user, $password, $database);
$objConn->debug = false;
//FINE DATI PER LA CONNESSIONE
date_default_timezone_set('Europe/Rome');
$strSpedisci = $_GET['s'];
$intErrore = 0;
if($strSpedisci=="y"){
ini_set("SMTP","smtp.lfdautomobile.com");
ini_set("sendmail_from","postmaster@lfdautomobile.com");
$strEmail = "lfdautomobile@gmail.com";
$strEmailUser = trim($_POST["email"]);
$strRagioneSociale = $_POST["ragione_sociale"];
$strCitta = $_POST["citta"];
$strPersonaRiferimento = $_POST["persona_riferimento"];
$strTelefono = $_POST["telefono"];
$strSitoWeb = $_POST["sito_web"];
//$strMessaggio = $_POST["message"];
if(trim($strRagioneSociale)==""){
$strMessaggio = "Devi inserire una ragione sociale valida. Per favore, controlla.";
$intErrore = 1;
}
//CONTROLLO LA MAIL
if(strlen($strEmailUser>=1)){
if(chkEmail($strEmailUser)){
}else{
$strMessaggio = "ATTENZIONE. Indirizzo email errato";
$intErrore = 1;
}
}
if($intErrore==0){
$a = $strEmail;
$oggetto = "Richiesta User-id e password da LFD Automobile";
$messaggio = "
Richiesta inviata da: " .$strRagioneSociale. ".
\nCittà:".$strCitta."\n
Persona di riferimento:".$strPersonaRiferimento."\n
Telefono:".$strTelefono."\n
Sito web:".$strSitoWeb."-------- FINE MESSAGGIO --------
";
//$header = "From:".$strNomeMittente." <".$strEmail.">\n";
$header = "From: ".$strEmailUser."\n";
$header .= "Reply-To: <".$strEmailUser.">\n";
$header .= "X-Mailer: PHP/" . phpversion();
$header .= "MIME-Version: 1.0\n";
$header .= "Content-Type: text/html; charset=\"utf-8\"\n";
mail($a, $oggetto, $messaggio, $header);
$a = $strEmailUser;
$oggetto = "CONFERMA INVIO RICHIESTA USER-ID E PASSWORD A LFD Automobile";
$messaggio = "
Buongiorno " .$strNomeIscritto. ".
La tua richiesta è stata inviata a LFD Automobile. Ti sarà risposto nel minor tempo possibile.
Cordiali saluti.
-------- FINE MESSAGGIO --------
";
$header = "From:".$strEmail.">\n";
$header .= "Reply-To: <".$strEmail.">\n";
$header .= "X-Mailer: PHP/" . phpversion();
$header .= "MIME-Version: 1.0\n";
$header .= "Content-Type: text/html; charset=\"utf-8\"\n";
mail($a, $oggetto, $messaggio, $header);
$Table = "TBL_clienti_anagrafica";
$Record = array();
$Record['cognome_cliente'] = $strRagioneSociale;
//$Record['nome_cliente'] = $_POST["nome_cliente"];
//$Record['codice_fiscale'] = $_POST["codice_fiscale"];
//$Record['indirizzo'] = $_POST["indirizzo"];
//$Record['cap'] = $_POST["cap"];
$Record['citta'] = $strCitta;
//$Record['provincia'] = $_POST["provincia"];
$Record['telefono1'] = $strTelefono;
//$Record['telefono2'] = $_POST["telefono2"];
//$Record['fax'] = $_POST["fax"];
$Record['email'] = $strEmailUser;
//$Record['note'] = $_POST["note"];
$Record['riceve_newsletter'] = "S";
$Record['avviso_nuove_auto'] = "S";
$Record['data_iscrizione'] = date("Y-m-d");
//$Record['userid'] = $_POST["userid"];
//$Record['password'] = $PrimaPassword;
$objConn->Connect($server, $user, $password, $database);
$objConn->AutoExecute($Table, $Record, "INSERT");
echo("Richiesta inviata con successo!
\n");
}
}
?>
Torna alla Home
Richiesta User-id e Password