Situation
I have a newsletter sign up form provided by a third party to integrate on our website. We are getting a lot of spam contacts and the partner only supports reCAPTCHA V2 checkbox for inline integration - this is not user friendly and I have never seen a newsletter sign up form with an interrupting captcha on other sites. So we'll have to use our own.
Standard method with PHP token verification
Google Recaptcha v3 example demo
Problem
I can't use another PHP action on the form-element to check the token in the backend because it is already used by the third party action. Is there any chance to get reCAPTCHA V3 working with such a form?
Third party form code
<form method="POST" action="https://xxx.xxxxxx.com/proc.php" id="_form_11_" novalidate>
<div class="_form-content">
<div class="_form_element">
<div class="_field-wrapper">
<input type="text" name="email" placeholder="Email" required />
</div>
</div>
<div class="_button-wrapper _full_width">
<button id="_form_11_submit" class="_submit" type="submit">
Anmelden
</button>
</div>
</div>
</form>