• Does anybody know of any code to use to make contact form 7 use an API based email verifier? Specifically Bounceless

    Would be greatly appreciated, thanks!

    Example below is for php and curl

    $email = "[email protected]";
    $key = "PUT YOUR API KEY HERE";
    $url = "https://app.bounceless.io/api/verifEmail?secret=".$key."&email=".$email;
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true );
    $response = curl_exec($ch);
    echo $response;
    curl_close($ch);
  • The topic ‘[Plugin: Contact Form 7]’ is closed to new replies.