<?php
require_once __DIR__ . '/config2.php';
require_once __DIR__ . '/class.phpmailer.php';
function sanitize($mysqli, $input)
{
return $mysqli->real_escape_string(trim($input));
}
function getOs()
{
$os = array(
'Win95' => 'Windows 95',
'Win98' => 'Windows 98',
'WinNT4.0' => 'Windows NT',
'Windows NT 4.90' => 'Windows ME',
'Windows NT 5.0' => 'Windows 2000',
'Windows NT 5.1' => 'Windows XP',
'Windows NT 5.2' => 'Windows NET',
'Windows NT 6.0' => 'Win vista',
'Windows NT 6.1' => 'Win 7',
'Windows NT 6.2' => 'Win 8',
'Mac' => 'Mac',
'PPC' => 'Mac Personal PC',
'Linux' => 'Linux',
'FreeBSD' => 'FreeBSD',
'SunOS' => 'SunOS',
'Irix' => 'Irix',
'BeOS' => 'BeOS',
'OS/2' => 'OS/2',
'AIX' => 'AIX',
);
foreach ($os as $key => $value) {
if (strpos($_SERVER['HTTP_USER_AGENT'], $key) !== false) {
return $value;
}
}
return 'Altro';
}
function getBrowser()
{
$browsers = array(
'MSIE' => 'Internet Explorer',
'Firefox' => 'FireFox',
'Lynx' => 'Lynx',
'Opera' => 'Opera',
'WebTV' => 'WebTV',
'Konqueror' => 'Konqueror',
'bot' => 'Bot',
'Google' => 'Bot',
'slurp' => 'Bot',
'scooter' => 'Bot',
'spider' => 'Bot',
'infoseek' => 'Bot',
'Nav' => 'Netscape',
'Gold' => 'Netscape',
'x11' => 'Netscape',
'Netscape' => 'Netscape'
);
foreach ($browsers as $key => $value) {
if (strpos($_SERVER['HTTP_USER_AGENT'], $key) !== false) {
return $value;
}
}
return 'Altro';
}
if ('POST' === $_SERVER['REQUEST_METHOD']) {
$nome = trim($mysqli, $_POST['nome']);
$cognome = trim($mysqli, $_POST['cognome']);
$eta = trim($mysqli, $_POST['eta']);
$email = trim($mysqli, $_POST['email']);
$messaggio = trim($mysqli, $_POST['messaggio']);
$time = date('H:i:s');
$date = strftime('%A, %d %B %Y');
$ip = $_SERVER['REMOTE_ADDR'];
if (empty($username)) {
echo 'Devi inserire il tuo username.';
} elseif (empty($password)) {
echo 'Devi inserire la tua password.';
} elseif (empty($eta)) {
echo 'Devi inserire la tua età.';
} elseif (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
echo 'Devi inserire un\'email valida.';
} elseif (empty($messaggio)) {
echo 'Devi inserire il messaggio.';
} else {
$mail = new PHPmailer();
$mail2 = new PHPMailer();
$mail->IsSMTP();
$mail->isHTML(true);
$mail->Host = "smtp.xxxxxxx.it";
$mail->Port = "25";
$mail->SMTPAuth = true;
$mail->Username = "user@fastwebnet.it";
$mail->Password = "ZZZZZ";
$alessio = "pippo@gmail.com";
$mail->AddAddress($mittente,$nome);
$mail->From = $marconcini;
$mail->FromName = "Biblionet San Maurizio";
$mail->AddReplyTo($alessio , 'Alessio');
$mail->AddBCC ($mittente);
$mail->Subject = "Richiesta Informazioni fatta sul sito Biblionet San Maurizio";
$mail->Body = 'Nome:' . "\n" . $nome . "\n\n";
$mail->Body .= 'Cognome:' . "\n" . $cognome . "\n\r";
$mail->Body .= 'Messaggio:' . "\n" . $messaggio . "\n\r";
$mail2->From = $mittente;
$mail2->FromName = $nome;
$mail2->AddAddress($address);
$mail2->Subject = "Richiesta informazioni dal sito Biblionet San Maurizio";
$mail2->Body = 'Nome:' . "\n" . $nome . "\n\r";
$mail2->Body = 'Cognome:' . "\n" . $cognome . "\n\r";
$mail2->Body .= 'E-mail:' . "\n" . $email . "\n\r";
$mail2->Body .= 'Richiesta:' . "\n" . $messaggio . "\n\r";
$mail2->Body .= $data . "\n";
$mail2->Body .= $time . "\n";
$mail2->Body .= $IP . "\n";
$mail2->Body .= $browser . "\n";
$mail2->Body .= $so . "n";
if (!$mail->Send()) {
echo '<div id="benvenuto">
<p><h3>C\'è stato un errore nell\'invio della mail</h3></p>
Cortesemente riprova e se vedi che il problema persiste, contattaci direttamente
</div>';
} elseif (!$mail2->Send()) {
echo '<div id="benvenuto">
<p><h3>C\'è stato un errore nell\'invio della mail 2</h3></p>
Cortesemente riprova e se vedi che il problema persiste, contattaci direttamente
</div>';
} else {
echo 'Ok messaggio inviato.';
}
}
}