yogibook-aury/public/rejectbookingclass.php
2024-09-18 16:47:42 +02:00

126 lines
6.0 KiB
PHP

<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
?>
<?php
include('include/headscript.php');
$conn = new mysqli($servername, $username, $password, $dbname);
if (isset($_GET['idbookingclass'])) {
$idbookingclass = $_GET['idbookingclass'];
// Recupera i dettagli della prenotazione per inviare la mail prima di cancellare il record
$query = "SELECT bookingclass.*, auth_users.*, service.*
FROM bookingclass
LEFT JOIN auth_users ON bookingclass.iduser = auth_users.id
LEFT JOIN service ON bookingclass.idservice = service.idservice
WHERE bookingclass.idbookingclass = $idbookingclass";
$result = $conn->query($query);
if ($result) {
while ($row = $result->fetch_assoc()) {
$emailuser = $row['email'];
$firstname = $row['first_name'];
$newtime = $row['bookingstart'];
$newtimeformat = date("d-m-Y H:i", strtotime($newtime));
require 'phpmailer/src/Exception.php';
require 'phpmailer/src/PHPMailer.php';
require 'phpmailer/src/SMTP.php';
//mail to client
$messageedit=" <p style='font-size: 14px; line-height: 190%;'><span style='font-size: 18px; line-height: 34.2px;'><strong><span style='line-height: 34.2px; font-size: 18px;'> Ciao $firstname , </span></strong></span></p>
<p style='font-size: 14px; line-height: 190%;'><span style='font-size: 16px; line-height: 30.4px;'>Ci dispiace ma la tua richiesta di rirpogrammazione è stata rifiutata! </span></p>
<p style='font-size: 14px; line-height: 190%;'><span style='font-size: 16px; line-height: 30.4px;'>Ecco la riprogrammazione rifiutata $newtimeformat</span></p>
<p style='font-size: 14px; line-height: 190%;'><span style='font-size: 16px; line-height: 30.4px;'>Puoi collegarti al portale YogiBook come sotto riportato per programmare la tua lezione</span></p>
<br>
<p style='font-size: 14px; line-height: 190%;'><span style='font-size: 16px; line-height: 30.4px;'>Per vedere e gestire le tue lezioni clicca qui: https://yogibook.yogasoul.it </span></p>
<br>
<p style='font-size: 14px; line-height: 190%;'><span style='font-size: 16px; line-height: 30.4px;'>Per il primo accesso devi per prima cosa resettare la password cliccando di seguito</span></p>
<br>
<a href='https://yogibook.yogasoul.it/public/password/reset' target='_blank' class='v-button v-font-size' style='box-sizing: border-box;display: inline-block;text-decoration: none;-webkit-text-size-adjust: none;text-align: center;color: #FFFFFF; background-color: #3AAEE0; border-radius: 4px;-webkit-border-radius: 4px; -moz-border-radius: 4px; width:auto; max-width:100%; overflow-wrap: break-word; word-break: break-word; word-wrap:break-word; mso-border-alt: none;font-size: 14px;'>
<span style='display:block;padding:10px 20px;line-height:120%;'><span style='line-height: 16.8px;'>Reset Password</span></span>
</a>
<br>
<br>
<p style='font-size: 14px; line-height: 190%;'><span style='font-size: 16px; line-height: 30.4px;'>Ci vediamo sul tappetino!</span></p>
<p style='font-size: 14px; line-height: 190%;'><span style='font-size: 16px; line-height: 30.4px;'>Il Team Yogasoul</span></p>";
$buttonedit="<a href='https://yogibook.yogasoul.it/' target='_blank' class='v-button v-font-size' style='box-sizing: border-box;display: inline-block;text-decoration: none;-webkit-text-size-adjust: none;text-align: center;color: #FFFFFF; background-color: #3AAEE0; border-radius: 4px;-webkit-border-radius: 4px; -moz-border-radius: 4px; width:auto; max-width:100%; overflow-wrap: break-word; word-break: break-word; word-wrap:break-word; mso-border-alt: none;font-size: 14px;'>
<span style='display:block;padding:10px 20px;line-height:120%;'><span style='line-height: 16.8px;'>YogiBook - YogaSoul</span></span>
</a>";
$mail = new PHPMailer(true);
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'premium60.web-hosting.com'; // Specify main and backup server
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'info@yogasoul.it'; // SMTP username
$mail->Password = '!Testolina88'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable encryption, 'ssl' also accepted
$mail->Port = '587';
include('mail/emailtemplate2.php');
// Email body content
//$trfnmbmail=$appformn.'r'.$revnumb;
$htmlContent = $mailmessage1;
$mail->From = 'info@yogasoul.it';
$mail->FromName = 'YogiBook [YogaSoul]';
$mail->addAddress($emailuser); // Add a recipient
$mail->Subject = "YogiBook - Riprogrammazione rifiutata!";
$mail->Body = $htmlContent;
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
if ($mail->send()) {
// Mail inviata con successo, ora cancella il record
$deleteQuery = "DELETE FROM bookingclass WHERE idbookingclass = ?";
$stmt = $conn->prepare($deleteQuery);
if ($stmt) {
$stmt->bind_param("i", $idbookingclass);
if ($stmt->execute()) {
// Reindirizza alla pagina "pendingbookedclass.php" dopo la cancellazione
header("Location: pendingbookedclass.php");
exit();
} else {
echo "Errore durante l'esecuzione della query di cancellazione: " . $stmt->error;
}
$stmt->close();
} else {
echo "Errore nella preparazione della query di cancellazione: " . $conn->error;
}
} else {
echo "Errore nell'invio della mail: " . $mail->ErrorInfo;
}
}
} else {
echo "Errore durante l'esecuzione della query di recupero dei dettagli: " . $conn->error;
}
} else {
echo "Parametro 'idbookingclass' non trovato nella richiesta GET.";
}
$conn->close();
?>