Can you post your notification settings?
again, i’ve lost three more notification… totally randomly
i’m planning to look for another plugin
is so irritating… i would just like to know why! 🙁
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 = "chris@yourdomain.co.uk";
$email = "website@yourdomain.co.uk";
$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('http://www.yourdomain.com/thankspage/', false);
?>
Setup the form to redirect to the page you’ve uploaded for example http://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
thanks!! i’ll try immediately! 🙂