Plugin Directory

Changeset 2271739


Ignore:
Timestamp:
03/31/2020 02:57:56 PM (6 years ago)
Author:
orangetoolz
Message:

Changed readme content

Location:
cf7-db-tool/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cf7-db-tool/trunk/readme.txt

    r2270887 r2271739  
    1515
    1616== Ingetration with Webhook by zapier ==
     17
    1718You 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.
    1819
     
    2021
    2122CONFIGURATION
     23
    2224This is an example to integrate with Zapier:
    23251). Create a Zap.
     
    5153* Email integration with bulk mail
    5254
     55REVIEW:
     56
     57We would be grateful for a [review here](https://wordpress.org/support/plugin/cf7-db-tool/reviews/).
     58
     59* Email integration with bulk mail
     60
    5361
    5462== Installation ==
     
    68767. Last 12 month graph report
    69778. Bulk mail
    70 9. Webhook Active/Configuration
     789. Webhook Active / Configuration
    717910. Zapier Step 1 - Choosing you app trigger
    728011. Zapier Step 2 - Choosing Catch Hook option
     
    8088= Why I don't have a reply by email option?
    8189`Reply by email` option only available if your form have a email field.
     90
     91= Does it works with Gutenberg?
     92Yes. We support WordPress 5+ and CF7 too.
     93
     94= Does it works with Gutenberg?
     95Yes. We support WordPress 5+ and CF7 too.
    8296
    8397== Changelog ==
     
    107121= 2.1.3 =
    108122*Release Date - December 26, 2019*
    109 *Added support link for request custom feature. 
     123*Added support link for request custom feature.
    110124
    111125= 2.1.4 =
    112126*Release Date - January 9, 2020*
    113 *Added custom css for report graph. 
     127*Added custom css for report graph.
    114128
    115129= 3.0.0 =
  • cf7-db-tool/trunk/src/Integration/cf7/admin/webhook-panel-html.php

    r2270887 r2271739  
    4545        <?php _e( 'In these options you can activate or deactivate Webhook integration.', 'cf7-db-tool' ); ?>
    4646        <br>
    47         <?php _e( 'To integrate you should insert your webhook URL below. For example, into Zapier you can create a trigger using "Webhooks" app and choose "Catch Hook" option.', 'cf7-db-tool' ); ?>
     47        <?php _e( 'To integrate you should insert your any webhook URL below. For example, into Zapier you can create a trigger using "Webhooks" (Screenshot 10) app and choose "Catch Hook" (Screenshot 11) option.', 'cf7-db-tool' ); ?>
    4848    </legend>
    4949
     
    7474                    <p>
    7575                        <label for="ctz-webhook-hook-url">
    76                             <input type="url" id="ctz-webhook-hook-url" name="ctz-webhook-hook-url" value="<?php echo $hook_url; ?>" style="width: 100%;">
     76                            <input type="url" id="ctz-webhook-hook-url" name="ctz-webhook-hook-url" value="<?php echo $hook_url; ?>" style="width: 100%;padding: 6px 10px;
     77    border-radius: 5px;">
    7778                        </label>
    7879                    </p>
     
    9495                        <label for="ctz-webhook-send-mail">
    9596                            <input type="checkbox" id="ctz-webhook-send-mail" name="ctz-webhook-send-mail" value="1" <?php checked( $send_mail, "1" ) ?>>
    96                             <?php _e( 'Send CF7 mail as usually', 'cf7-db-tool' ) ?>
     97                            <?php _e( 'Send mail when form submit?', 'cf7-db-tool' ) ?>
    9798                        </label>
    9899                    </p>
     
    119120                $rows = max( $rows, 4 );
    120121            ?>
    121             <textarea id="ctz-special-mail-tags" name="ctz-special-mail-tags" class="large-text code" rows="<?php echo $rows; ?>"><?php echo $special_mail_tags; ?></textarea>
     122            <textarea style="padding: 6px 10px; border-radius: 5px;" id="ctz-special-mail-tags" name="ctz-special-mail-tags" class="large-text code" rows="<?php echo $rows; ?>"><?php echo $special_mail_tags; ?></textarea>
    122123        </label>
    123124        <p class="description"><?php
     
    172173?>
    173174
    174 <pre style="background: #FFF; border: 1px solid #CCC; padding: 10px; margin: 0;"><?php
     175<pre style="background: #FFF; border: 1px solid #CCC; margin: 0;padding: 6px 10px;border-radius: 5px;"><?php
    175176    echo json_encode( $sent_data, JSON_PRETTY_PRINT );
    176177?></pre>
Note: See TracChangeset for help on using the changeset viewer.