I got fed up of this problem and put a work around in place.
Put the code below into a PHP file and upload to your server in an accessible location.
<?php
//Email information
$admin_email = "[email protected]";
$email = "[email protected]";
$subject = "Website Enquiry";
$comment = "Form has been triggered";
//send email
mail($admin_email, "$subject", $comment, "From:" . $email);
function Redirect($url, $permanent = false)
{
if (headers_sent() === false)
{
header('Location: ' . $url, true, ($permanent === true) ? 301 : 302);
}
exit();
}
Redirect('https://www.yourdomain.com/thankspage/', false);
?>
Setup the form to redirect to the page you’ve uploaded for example https://yourdomain.com/process_form.php
The page will send you a notification that the form has been triggered and then redirect to a URL you define eg a thanks page.
You’ll need to login to see the submission, but at least you’ll get some form of notification to action the event.
Saves having to recode all your forms.
Hope it helps