HEX
Server: Apache/2.4.41
System: Linux mainweb 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: nationalmedicaregrp (1119)
PHP: 8.3.7
Disabled: exec,passthru,shell_exec,system,popen,proc_open,pcntl_exec
Upload Files
File: /home/demo/public_html/waterdamage/assets/php/mailer-recaptcha-v2.php
<?php
if($_POST) {

	$to_email = "[email protected]"; //Recipient email, Replace with own email here
	$subject  = "An email from my website contact form";
	
	//check if its an ajax request, exit if not
	if(!isset($_SERVER['HTTP_X_REQUESTED_WITH']) AND strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) != 'xmlhttprequest') {
		
		$output = json_encode(array( //create JSON data
			'type'=>'error', 
			'text' => 'Sorry Request must be Ajax POST'
		));
		die($output); //exit script outputting json data
	} 
	
	//Sanitize input data using PHP filter_var().
	$user_name		= filter_var($_POST["name"], FILTER_SANITIZE_STRING);
	$user_email		= filter_var($_POST["email"], FILTER_SANITIZE_EMAIL);
	$message		= filter_var($_POST["message"], FILTER_SANITIZE_STRING);

	$response = $_POST["g-recaptcha-response"];
	$recaptcha_url = 'https://www.google.com/recaptcha/api/siteverify';
	$recaptcha_data = array(
		'secret' => '6LdzptEUAAAAANl_oSyrERFVnpYeKChSrQahqPiV',
		'response' => $_POST["g-recaptcha-response"]
	);
	$recaptcha_options = array(
		'http' => array (
			'method' => 'POST',
			'content' => http_build_query($recaptcha_data)
		)
	);
	$context  = stream_context_create($recaptcha_options);
	$recaptcha_verify = file_get_contents($recaptcha_url, false, $context);
	$captcha_success=json_decode($recaptcha_verify);

	if ($captcha_success->success==false) {
		$output = json_encode(array('type'=>'error', 'text' => 'Please check reCAPTCHA.'));
		die($output);
	} else if ($captcha_success->success==true) {
		//additional php validation
		if(strlen($user_name) < 2){ // If length is less than 4 it will output JSON error.
			$output = json_encode(array('type'=>'error', 'text' => 'Name is too short or empty!'));
			die($output);
		}
		if(!filter_var($user_email, FILTER_VALIDATE_EMAIL)){ //email validation
			$output = json_encode(array('type'=>'error', 'text' => 'Please enter a valid email!'));
			die($output);
		}
		
		//email body
		$message_body = $message."\r\n\r\n-".$user_name."\r\nEmail: ".$user_email."\r\n" ;
		
		//proceed with PHP email.
		$headers = 'From: '. $user_email .'' . "\r\n" .
		'Reply-To: '.$user_email.'' . "\r\n" .
		'X-Mailer: PHP/' . phpversion();
		
		$send_mail = mail($to_email, $subject, $message_body, $headers);
		
		if(!$send_mail) {
			//If mail couldn't be sent output error. Check your PHP email configuration (if it ever happens)
			$output = json_encode(array('type'=>'error', 'text' => 'Could not send mail! Please check your PHP mail configuration.'));
			die($output);
		} else{
			$output = json_encode(array('type'=>'message', 'text' => 'Hi '.$user_name .' Thank you for your email'));
			die($output);
		}
	}
	
}
?>