Plugin Directory

Changeset 2270887


Ignore:
Timestamp:
03/30/2020 02:53:02 PM (6 years ago)
Author:
orangetoolz
Message:

Webhook added with zapier

Location:
cf7-db-tool
Files:
13 added
3 edited

Legend:

Unmodified
Added
Removed
  • cf7-db-tool/trunk/cf7-db-tool.php

    r2270093 r2270887  
    22if ( ! defined( 'ABSPATH' ) ) exit;
    33/**
    4  * Plugin Name: CF7 DB Tool
     4 * Plugin Name: CF7 DB Tool & Webhook &  Zapier  & Bulk Email - All in one.
    55 * Plugin URI: https://orangetoolz.com/
    6  * Description: Save all contact form 7 submitted data to the database, View, Export, See status and many more.
     6 * Description: Save all contact form 7 submitted data to the database, View, Export, See status and Integration webhook by zapier.
    77 * Author: OrangeToolz
    88 * Text Domain: cf7-db-tool
    9  * Tags: contact, cf7, contact form 7, db, export, save, wpcf7, contact form 7 db,  contact form 7 database, contact form 7 data export, contact form 7 database addon
    10  * Version: 3.5.1
     9 * Tags: contact, cf7, zapier, integration, webhook, bulk mail, contact form 7, db, export, save, wpcf7, contact form 7 db,  contact form 7 database, contact form 7 data export, contact form 7 database addon
     10 * Version: 4.0.0
    1111 */
    1212
    13 define('CF7_DBT_VERSION', '3.5.1');
    14 define('CF7_DBT_DB_VERSION', '3.5.1');
     13define('CF7_DBT_VERSION', '4.0.0');
     14define('CF7_DBT_DB_VERSION', '4.0.0');
    1515define('CF7_DBT_PATH', __DIR__);
    1616define('CF7_DBT_URL', plugins_url(basename(CF7_DBT_PATH)));
  • cf7-db-tool/trunk/readme.txt

    r2270093 r2270887  
    1 === CF7 DB Tool ===
     1=== CF7 DB Tool & Webhook &  Zapier  & Bulk Email - All in one. ===
    22Contributors: orangetoolz
    3 Tags: contact, cf7, contact form 7, db, export, save, wpcf7, contact form 7 db,  contact form 7 database, contact form 7 data export, contact form 7 database addon
     3Tags: contact, cf7, zapier, integration, webhook, bulk mail, contact form 7, db, export, save, wpcf7, contact form 7 db,  contact form 7 database, contact form 7 data export, contact form 7 database addon
    44Requires at least: 4.8
    55Tested up to: 5.3
    6 Stable tag: 3.5.1
     6Stable tag: 4.0.0
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    1313
    1414After installing the plugin it automatically captures and stores all contact form 7 submission inside the wp-admin interface.
     15
     16== Ingetration with Webhook by zapier ==
     17You can now Automated your contact for using Zapier integration and webhook setting. Using Zapier you can now send the contact information in anywhere you want. Zapier is the easiest way to automate your works. Also using webhook you can take the contact form data in any kinds of CRM tool.
     18
     19Using our Plugin, You can now Automated your contact form( CF7 ) for using Zapier integration and webhook setting. Using Zapier you can now send the contact information in anywhere you want. Zapier is the easiest way to automate your works. Also using webhook you can take the contact form data in any kinds of CRM tool.
     20
     21CONFIGURATION
     22This is an example to integrate with Zapier:
     231). Create a Zap.
     242). Choose your trigger as “Webhooks” app (Screenshot 10).
     253). Choose “Catch Hook” option (Screenshot 11).
     264). Done! Now insert the URL given (Screenshot 12) into your Contact Form configuration and activate the integration.
     27
     28CREATING YOUR WORKFLOW
     29
     30After configuration, you can send one form to create an example data into Zapier dashboard. Then you can continue creating your workflow with filters and other apps.
    1531
    1632Some major Features are listed below:
     
    2844* Send individual reply email form admin (Available if form submission contains any email address)
    2945* Bulk email
    30 * Upload mail form CSV *
     46* Upload mail form CSV
     47* Integration Webhook by Zapier
    3148
    3249Upcoming features:
    3350
    34 * Implement Webhook
    3551* Email integration with bulk mail
    3652
     
    52687. Last 12 month graph report
    53698. Bulk mail
     709. Webhook Active/Configuration
     7110. Zapier Step 1 - Choosing you app trigger
     7211. Zapier Step 2 - Choosing Catch Hook option
     7312. Zapier Step 3 - Webhook URL (waiting for first data)
    5474
    5575== Frequently asked questions ==
     
    117137*Bug fix
    118138
     139= 4.0.0 =
     140*Release Date - March 30, 2020*
     141*Integration Webhook by Zapier
    119142
     143
  • cf7-db-tool/trunk/src/Plugin.php

    r2265613 r2270887  
    11<?php
    22namespace CF7DBTOOL;
     3use CFTZ_Module_CF7;
     4use CFTZ_Module_Zapier;
     5
    36class Plugin
    47{
     
    2326
    2427    private $report;
     28    /**
     29     * method __construct()
     30     */
     31   // private $integration;
    2532    /**
    2633     * method __construct()
     
    5360        require_once 'Report.php';
    5461        require_once'BulkMail.php';
     62        require_once 'Integration/integration.php';
    5563        $this->config = new Config();
    5664        add_action('admin_menu', [$this, 'addOptionsPage'], 5);
Note: See TracChangeset for help on using the changeset viewer.