Dear '; $message .= $_POST['name']; $message .= ',
 

We have received your reservation, shortly we will respond with a confirmation.

Your Business Management

Your Business
'; $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= 'From: Reservations ' . "\r\n"; mail($destination, $subject, $message, $headers); // Sending Notification $destinationB = '[email protected]'; $subjectB = 'New Reservation'; $messageB = 'There is a new reservation.'; $fromB = '[email protected]'; $headersB = "From: $fromB"; mail($destinationB, $subjectB, $messageB, $headersB); ?>