if ($_POST['sended']
&& isset($_POST['name']) && trim($_POST['name']) != ""
&& isset($_POST['email']) && trim($_POST['email']) != ""
&& isset($_POST['datestart']) && trim($_POST['datestart']) != ""
&& isset($_POST['dateend']) && trim($_POST['dateend']) != ""
)
{
// i dati del form sono corretti, spediamo
$to = 'info@friccicodiluna.com';
$subject = '[FRICCICO DI LUNA] Richiesta di PRENOTAZIONE da ' . $_POST['name'];
$message = "Nome: " . $_POST['name'] . "\n";
$message.= "Email: " . $_POST['email'] . "\n";
$message.= "Data arrivo: " . $_POST['datestart'] . "\n";
$message.= "Data partenza: " . $_POST['dateend'] . "\n" . "\n";
$message.= "Commento: " . $_POST['comment'] . "\n";
$headers = 'From: ' . $_POST['email'] . "\r\n" .
'X-Mailer: PHP/' . phpversion();
//mail($to, $subject, $message, $headers);
require_once('class.phpmailer.php');
$mail = new PHPMailer(true); // the true param means it will throw exceptions on errors, which we need to catch
$mail->IsSMTP(); // telling the class to use SMTP
try
{
$mail->Host = "smtp.friccicodiluna.com"; // SMTP server
$mail->SMTPAuth = true;
$mail->Username = "info@friccicodiluna.com";
$mail->Password = "paola";
$mail->SMTPDebug = 0; // enables SMTP debug information (for testing)
$mail->SetFrom($_POST['email'], $_POST['name']);
$mail->AddAddress('g.ferri@studiomocavini.com', 'Friccico di Luna');
$mail->Subject = $subject;
$mail->Body = $message;
$mail->Send();
}
catch (phpmailerException $e)
{
//echo $e->errorMessage(); //Pretty error messages from PHPMailer
}
catch (Exception $e)
{
//echo $e->getMessage(); //Boring error messages from anything else!
}
?>
}
?>
Grazie per effettuato una prenotazione, riceverete una risposta nel più breve tempo possibile
Booking form
Prenotazione online
Compila il modulo qui a sinistra per richiedere una prenotazione. Risponderemo nel minor tempo prossibile.