?php include "classes/class.loader.php"; ?> if (isset($_POST['booking_id'])) { $email = new email(); $email->add_address("walruslector@gmail.com", "Jana"); $email->add_address("unleashed.offleashed@gmail.com", "Rika"); $email->subject("Unleashed - Booking Confirmation"); $email->body("

Dear Customer,

Your booking has been created, Please wait for the confirmation email..

If you have any questions, feel free to contact our support team.

Best regards,

The Unleashed Team

"); $email->send(); header("location: home.php"); echo ""; }