-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreserva.php
116 lines (73 loc) · 3.02 KB
/
reserva.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\SMTP;
use PHPMailer\PHPMailer\Exception;
?>
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
</head>
<body>
<?php
$nombre = $_POST["nombre"];
$telefono = $_POST["telefono"];
$email = $_POST["email"];
$hora = $_POST["hora"];
$fechaPost = $_POST['fecha'];
$fechaReserva = date('Y-m-d', strtotime($fechaPost));
$fechaHoy = date('Y-m-d');
$fechaMes = date('Y-m-d', strtotime($fechaHoy . "+1 month"));
if ($fechaReserva < $fechaHoy) {
echo "<h1> La fecha seleccionada es en el pasado </h1>";
echo '<a href="index.php" >Volver </a>';
} else if ($fechaReserva > $fechaMes) {
echo "<h1>Todavia no se han abierto las reservas</h1>";
echo '<a href="index.php" >Volver </a>';
} else {
echo "<h1>Puedes reservar</h1>";
correo($fechaReserva, $hora , $email);
echo '<a href="index.php" >Volver </a>';
}
function correo($fechaReserva, $hora, $email)
{
$mensaje = "Todo listo para su reserva, le esperamos el dia " . $fechaReserva . "a las " . $hora;
//Load Composer's autoloader
require 'PHPMailer/src/Exception.php';
require 'PHPMailer/src/PHPMailer.php';
require 'PHPMailer/src/SMTP.php';
//Create an instance; passing `true` enables exceptions
$mail = new PHPMailer(true);
try {
//Server settings
$mail->isSMTP();
$mail->Host = 'segundodaw.com';
$mail->SMTPAuth = true;
$mail->Username = '[email protected]';
$mail->Password = 'SegundoDAW';
$mail->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS;
$mail->Port = 465;
//Informacion sobre los destinatarios y los enviadores
$mail->setFrom('[email protected]', 'alumno');
$mail->addAddress($email);
$mail->addReplyTo('[email protected]', 'alumno');
//Contenido
$mail->isHTML(true);
$mail->Subject = "Reserva para Taberna de MOE";
$mail->Body = $mensaje;
$mail->send();
echo 'Se envio un mensaje a tu correo';
} catch (Exception $e) {
echo "El mensaje no fue enviado. Mail Error: {$mail->ErrorInfo}";
}
}
?>
</body>
</html>