• Resolved mtharani

    (@mtharani)


    Is it possible to setup some kind of whitelist or bypass? We use Wachete to automate testing of our forms every hour with a closed-loop email. Since enabling this plugin, those emails are going into the spam folder, which does make sense. But I’d like to be able to bypass this for these specific form entries (by provided email, for example). Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author GravityKit

    (@gravityview)

    @mtharani You can add a filter to gform_entry_is_spam with a priority number greater than 11.

    Note in this code below that it uses 20 instead of the default 10 priority.

    add_filter( 'gform_entry_is_spam', function ( $is_spam = false, $form = array(), $entry = array() ) {
      // Your code would go here; return false to say it's not spam
    
      return $is_spam;
    }, 20, 3 );
    
    Thread Starter mtharani

    (@mtharani)

    Sorry @gravityview not sure I understand how exactly this filter should work.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Whitelist or Bypass’ is closed to new replies.