Changeset 2271739
- Timestamp:
- 03/31/2020 02:57:56 PM (6 years ago)
- Location:
- cf7-db-tool/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (6 diffs)
-
src/Integration/cf7/admin/webhook-panel-html.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cf7-db-tool/trunk/readme.txt
r2270887 r2271739 15 15 16 16 == Ingetration with Webhook by zapier == 17 17 18 You 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 19 … … 20 21 21 22 CONFIGURATION 23 22 24 This is an example to integrate with Zapier: 23 25 1). Create a Zap. … … 51 53 * Email integration with bulk mail 52 54 55 REVIEW: 56 57 We would be grateful for a [review here](https://wordpress.org/support/plugin/cf7-db-tool/reviews/). 58 59 * Email integration with bulk mail 60 53 61 54 62 == Installation == … … 68 76 7. Last 12 month graph report 69 77 8. Bulk mail 70 9. Webhook Active /Configuration78 9. Webhook Active / Configuration 71 79 10. Zapier Step 1 - Choosing you app trigger 72 80 11. Zapier Step 2 - Choosing Catch Hook option … … 80 88 = Why I don't have a reply by email option? 81 89 `Reply by email` option only available if your form have a email field. 90 91 = Does it works with Gutenberg? 92 Yes. We support WordPress 5+ and CF7 too. 93 94 = Does it works with Gutenberg? 95 Yes. We support WordPress 5+ and CF7 too. 82 96 83 97 == Changelog == … … 107 121 = 2.1.3 = 108 122 *Release Date - December 26, 2019* 109 *Added support link for request custom feature. 123 *Added support link for request custom feature. 110 124 111 125 = 2.1.4 = 112 126 *Release Date - January 9, 2020* 113 *Added custom css for report graph. 127 *Added custom css for report graph. 114 128 115 129 = 3.0.0 = -
cf7-db-tool/trunk/src/Integration/cf7/admin/webhook-panel-html.php
r2270887 r2271739 45 45 <?php _e( 'In these options you can activate or deactivate Webhook integration.', 'cf7-db-tool' ); ?> 46 46 <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' ); ?> 48 48 </legend> 49 49 … … 74 74 <p> 75 75 <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;"> 77 78 </label> 78 79 </p> … … 94 95 <label for="ctz-webhook-send-mail"> 95 96 <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' ) ?> 97 98 </label> 98 99 </p> … … 119 120 $rows = max( $rows, 4 ); 120 121 ?> 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> 122 123 </label> 123 124 <p class="description"><?php … … 172 173 ?> 173 174 174 <pre style="background: #FFF; border: 1px solid #CCC; padding: 10px; margin: 0;"><?php175 <pre style="background: #FFF; border: 1px solid #CCC; margin: 0;padding: 6px 10px;border-radius: 5px;"><?php 175 176 echo json_encode( $sent_data, JSON_PRETTY_PRINT ); 176 177 ?></pre>
Note: See TracChangeset
for help on using the changeset viewer.