• I have figured out how to do this, so I have added it here in case it helps someone else.

    add_filter( 'gform_pre_send_email', 'val_disable_update_email' );
    function val_disable_update_email( $email  ) {
    	if ( isset( $_GET['gform_post_id'] ) ) {
    		$email['abort_email'] = true;
    	}
    
    	return $email;
    }
    • This topic was modified 8 years, 2 months ago by valerio_cas.
  • The topic ‘Disabling email notifications’ is closed to new replies.