Server : Apache
System : Linux 8.167.178.68.host.secureserver.net 4.18.0-553.158.1.el8_10.x86_64 #1 SMP Wed Aug 26 03:18:33 EDT 2026 x86_64
User : avscylinder ( 1028)
PHP Version : 8.1.34
Disable Function : NONE
Directory :  /home/avscylinder/public_html/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]


Current File : /home/avscylinder/public_html/home.php
<?php
if(isset($_POST['home'])){
    $Subject = 'Enquiry Us'; 
    $ToEmail = 'info@avscylinder.in';
    $me=$_POST['name'];
    $mailheader = "MIME-Version: 1.0" . "\r\n";
    $mailheader .= "Content-type:text/html;charset=UTF-8"."\r\n";
    $mailheader .='From : '.$_POST['email'].'\r\n'; 
    $MESSAGE_BODY= "";
    $MESSAGE_BODY .= " Name :- ".$_POST["name"]."<br>"; 
    $MESSAGE_BODY .= "Email :- ".$_POST["email"]."<br>";
    $MESSAGE_BODY .= "Mobile :- ".$_POST["phone"]."<br>";
    $MESSAGE_BODY .= "Message :- ".$_POST["message"]."<br>";   
    if(mail($ToEmail, $Subject, $MESSAGE_BODY, $mailheader))
    { 
        echo "<script> alert('Thank you " .$me. " your message was sent'); </script>";
        echo "<script>  window.history.back(); </script>";
    }
    else
    {
        echo "<script> alert('Mail Not send'); </script>";
        echo "<script>  window.history.back(); </script>";
    }
}
?>

F1le Man4ger