:: **Zploit** v1.0 | Current Path: **/home/kreativepixelz/sharadniti.com/old/**
:: Editing File: mail.php
<?php print_r($_POST); exit; $errSucess = ""; if (isset($_POST['submit'])) { $errSucess = ""; $name = $_POST['name']; $email = $_POST['email']; $phone = $_POST['phone']; /* $msg=$_POST['msg']; */ $to = "harshadvalani1993@gmail.com"; $subject = "Website Enquiry"; $txt = "Name : ".$name."\r\nContact No: ".$phone."\r\nEmail-ID: ".$email; $headers = "From:".$email."\r\n" ."BCC: "; if(mail($to,$subject,$txt,$headers)) { $errSucess = 'Thank you for contacting us, We will get back to you soon!'; } else { $errMsg = 'Mail Issue'; } } ?>