Reply To: Recaptcha v2 unable to stop spam

#10044782
Support
Keymaster

Hello, you can add a “filter” before $mail->Send(); in the php File.:

if (preg_match("/.ru/", $_POST['email'])){
	$arrResult = array ('response'=>'error','errorMessage'=>'Blocked!');
	exit();
}