Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Taylor Lovett

    (@tlovett1)

    Can you post your notification settings?

    Thread Starter ladyzebra

    (@ladyzebra)

    Thread Starter ladyzebra

    (@ladyzebra)

    no help?

    Thread Starter ladyzebra

    (@ladyzebra)

    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 = "[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

    Thread Starter ladyzebra

    (@ladyzebra)

    thanks!! i’ll try immediately! ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Email notification’ is closed to new replies.