Server IP : 104.21.38.3 / Your IP : 162.158.170.219 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/boathouseatalleppey.in/ |
Upload File : |
<?php $toEmail = "[email protected]"; // Recipient email // Get the submitted form data $email = $_POST['email']; $name = $_POST['name']; $location = $_POST['location']; $arrival_date = $_POST['arrival_date']; $departure_date = $_POST['departure_date']; $passengers = $_POST['passengers']; $children = $_POST['children']; $mobile = $_POST['mobile']; $emailSubject = 'Contact Request Submitted by '.$name; $htmlContent = '<h2>Contact Request Submitted</h2> <h4>Name</h4><p>'.$name.'</p> <h4>Email</h4><p>'.$email.'</p> <h4>Mobile</h4><p>'.$mobile.'</p> <h4>Location</h4><p>'.$location.'</p> <h4>Arrival date</h4><p>'.$arrival_date.'</p> <h4>Departure date</h4><p>'.$departure_date.'</p> <h4>No If passengers</h4><p>'.$passengers.'</p> <h4>No Of children</h4><p>'.$children.'</p>'; // Set content-type header for sending HTML email $headers = "MIME-Version: 1.0" . "\r\n"; $headers .= "Content-type:text/html;charset=UTF-8" . "\r\n"; // Additional headers $headers .= 'From: '.$name.'<'.$email.'>'. "\r\n"; $headers .= 'Cc: [email protected]' . "\r\n"; // Send email if(mail($toEmail,$emailSubject,$htmlContent,$headers)){ echo 'Your contact request has been submitted successfully !'; }else{ echo 'Your contact request submission failed, please try again.'; } ?>