Form Maker by WD – user-friendly drag & drop Form Builder plugin - Version 1.8.31

Version Description

Fixed: Issue with search in Submissions page

Download this release

Release Info

Developer webdorado
Plugin Icon 128x128 Form Maker by WD – user-friendly drag & drop Form Builder plugin
Version 1.8.31
Comparing to
See all releases

Code changes from version 1.8.30 to 1.8.31

admin/models/FMModelSubmissions_fm.php CHANGED
@@ -186,18 +186,18 @@ class FMModelSubmissions_fm {
186
  $orderby = ' ORDER BY `element_value` ' . $asc_or_desc;
187
  }
188
  else {
189
- $join = 'SELECT group_id FROM ' . $wpdb->prefix . 'formmaker_submits WHERE element_label="' . $join_where[0]['label'] . '" AND element_value LIKE "%' . $join_where[0]['search'] . '%" AND ' . $where;
190
  }
191
  break;
192
  default:
193
- $join = 'SELECT t.group_id FROM (SELECT ' . $cols . ' FROM ' . $wpdb->prefix . 'formmaker_submits WHERE ' . $where . ' AND element_label="' . $join_where[0]['label'] . '" AND element_value LIKE "%' . $join_where[0]['search'] . '%" ) as t ';
194
  for ($key = 1; $key < count($join_query); $key++) {
195
  if ($join_query[$key] == 'sort') {
196
  $join .= 'LEFT JOIN (SELECT group_id as group_id' . $key . ', element_value FROM ' . $wpdb->prefix . 'formmaker_submits WHERE ' . $where . ' AND element_label="' . $join_where[$key]['label'] . '") as t' . $key . ' ON t' . $key . '.group_id' . $key . '=t.group_id ';
197
  $orderby = ' ORDER BY t' . $key . '.`element_value` ' . $asc_or_desc . '';
198
  }
199
  else {
200
- $join .= 'INNER JOIN (SELECT group_id as group_id' . $key . ' FROM ' . $wpdb->prefix . 'formmaker_submits WHERE '.$where.' AND element_label="' . $join_where[$key]['label'] . '" AND element_value LIKE "%' . $join_where[$key]['search'] . '%" ) as t' . $key . ' ON t' . $key . '.group_id' . $key . '=t.group_id ';
201
  }
202
  }
203
  break;
186
  $orderby = ' ORDER BY `element_value` ' . $asc_or_desc;
187
  }
188
  else {
189
+ $join = 'SELECT group_id FROM ' . $wpdb->prefix . 'formmaker_submits WHERE element_label="' . $join_where[0]['label'] . '" AND (element_value LIKE "%' . $join_where[0]['search'] . '%" OR element_value LIKE "%' . str_replace(' ', '@@@', $join_where[0]['search']) . '%") AND ' . $where;
190
  }
191
  break;
192
  default:
193
+ $join = 'SELECT t.group_id FROM (SELECT ' . $cols . ' FROM ' . $wpdb->prefix . 'formmaker_submits WHERE ' . $where . ' AND element_label="' . $join_where[0]['label'] . '" AND (element_value LIKE "%' . $join_where[0]['search'] . '%" OR element_value LIKE "%' . str_replace(' ', '@@@', $join_where[0]['search']) . '%" ) ) as t ';
194
  for ($key = 1; $key < count($join_query); $key++) {
195
  if ($join_query[$key] == 'sort') {
196
  $join .= 'LEFT JOIN (SELECT group_id as group_id' . $key . ', element_value FROM ' . $wpdb->prefix . 'formmaker_submits WHERE ' . $where . ' AND element_label="' . $join_where[$key]['label'] . '") as t' . $key . ' ON t' . $key . '.group_id' . $key . '=t.group_id ';
197
  $orderby = ' ORDER BY t' . $key . '.`element_value` ' . $asc_or_desc . '';
198
  }
199
  else {
200
+ $join .= 'INNER JOIN (SELECT group_id as group_id' . $key . ' FROM ' . $wpdb->prefix . 'formmaker_submits WHERE '.$where.' AND element_label="' . $join_where[$key]['label'] . '" AND (element_value LIKE "%' . $join_where[$key]['search'] . '%" OR element_value LIKE "%' . str_replace(' ', '@@@', $join_where[$key]['search']) . '%") ) as t' . $key . ' ON t' . $key . '.group_id' . $key . '=t.group_id ';
201
  }
202
  }
203
  break;
admin/views/FMViewUninstall_fm.php CHANGED
@@ -36,8 +36,8 @@ class FMViewUninstall_fm {
36
  </div>
37
  <br />
38
  <div class="goodbye-text">
39
- Before uninstalling the plugin, please Contact our <a href="https://web-dorado.com/support/contact-us.html" target= '_blank'>support team</a>. We'll do our best to help you out with your issue. We value each and every user and value what’s right for our users in everything we do.<br>
40
- However, if anyway you have made a decision to uninstall the plugin, please take a minute to <a href="https://web-dorado.com/support/contact-us.html" target= '_blank'>Contact us</a> and tell what you didn't like for our plugins further improvement and development. Thank you !!!
41
  </div>
42
  <p>
43
  Deactivating Form Maker plugin does not remove any data that may have been created, such as the Forms and the Submissions. To completely remove this plugin, you can uninstall it here.
36
  </div>
37
  <br />
38
  <div class="goodbye-text">
39
+ Before uninstalling the plugin, please Contact our <a href="https://web-dorado.com/support/contact-us.html?source=formmaker" target= '_blank'>support team</a>. We'll do our best to help you out with your issue. We value each and every user and value what’s right for our users in everything we do.<br>
40
+ However, if anyway you have made a decision to uninstall the plugin, please take a minute to <a href="https://web-dorado.com/support/contact-us.html?source=formmaker" target= '_blank'>Contact us</a> and tell what you didn't like for our plugins further improvement and development. Thank you !!!
41
  </div>
42
  <p>
43
  Deactivating Form Maker plugin does not remove any data that may have been created, such as the Forms and the Submissions. To completely remove this plugin, you can uninstall it here.
css/form_maker_tables.css CHANGED
@@ -1145,10 +1145,11 @@ div.error_fm {
1145
  }
1146
 
1147
  .goodbye-text{
1148
- font-size: 15px;
1149
- background: #fff;
1150
- padding: 15px;
1151
- line-height: 22px;
 
1152
  }
1153
 
1154
  .goodbye-text a{
1145
  }
1146
 
1147
  .goodbye-text{
1148
+ font-size: 16px;
1149
+ font-weight: bold;
1150
+ background: #fff;
1151
+ padding: 15px;
1152
+ line-height: 22px;
1153
  }
1154
 
1155
  .goodbye-text a{
form-maker.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Form Maker
4
  * Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
5
  * Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
6
- * Version: 1.8.30
7
  * Author: WebDorado
8
  * Author URI: https://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -271,7 +271,7 @@ function register_fmemailverification_cpt(){
271
  // Activate plugin.
272
  function form_maker_activate() {
273
  $version = get_option("wd_form_maker_version");
274
- $new_version = '1.8.30';
275
  global $wpdb;
276
  if (!$version) {
277
  add_option("wd_form_maker_version", $new_version, '', 'no');
3
  * Plugin Name: Form Maker
4
  * Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
5
  * Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
6
+ * Version: 1.8.31
7
  * Author: WebDorado
8
  * Author URI: https://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
271
  // Activate plugin.
272
  function form_maker_activate() {
273
  $version = get_option("wd_form_maker_version");
274
+ $new_version = '1.8.31';
275
  global $wpdb;
276
  if (!$version) {
277
  add_option("wd_form_maker_version", $new_version, '', 'no');
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-form.html
4
  Tags: form, forms, form builder, form maker, form manager, form plugin, form with recaptcha, forms plugin, multiple forms, paypal form, survey form, feedback form, feedback forms, contact form, contact form plugin, contact form builder, form creator, email form, secure form, web form, form to email, contact forms, custom forms, form widget, captcha form, wordpress contact form ,recaptcha contact form, form creation, contact form with auto reply, widget contact form, builder, feedback, contacts form plugin , custom contact form, contact us form, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, input, validation, send copy, form with captcha, pdf, mysql
5
  Requires at least: 3.4
6
  Tested up to: 4.4
7
- Stable tag: 1.8.30
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -251,7 +251,7 @@ In case you are upgrading your Form Maker to paid version, but still want to pre
251
  = 1. What are the most common usage cases for the Form Maker? =
252
  The Form Maker can be used for creating multiple types of forms, including contact, evaluation, application forms, quizzes/tests or surveys, online order forms and etc. The Form Maker includes various types of fields which can be modified and edited.
253
 
254
- = 2. Where are the submitted entries stored? =
255
 
256
  There is a Submissions section, where you will find the submitted entries. The entries can also be emailed to the Administrator. For this you should provide an email in Email Options section (located within Form Options). You can also fill in the data into a custom table using MySQL Mapping possibility, which makes it possible to store the data into another MySQL database.
257
 
@@ -302,9 +302,72 @@ The Form Maker (Pro version) has simple PayPal integration. This allows the user
302
  = 11. Can the email be sent to a specific email based on the selected field? =
303
  Unfortunately we do not have support for this feature. But we [Conditional Emails Add-on](https://web-dorado.com/products/wordpress-form/add-ons/conditional-emails.html).Using this add-on the user will be able to connect the fields with the administrator email. The field entry will serve as a condition for selecting the relevant administrator email.
304
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
305
 
306
  == Changelog ==
307
 
 
 
 
308
  = 1.8.30 =
309
  Added: Submission ID in csv export
310
 
@@ -766,7 +829,7 @@ Log in to the administrator panel.
766
  Go to Plugins Add > New > Upload.
767
  Click “Choose file” (“Browse”) and select the Form Maker zip file.
768
  *For Mac Users*
769
- *Go to your Downloads folder and locate the folder with the plugin. Right-click on the folder and select Compress. Now you have a newly created .zip file which can be installed as described here.*
770
  Click “Install Now” button.
771
  If the installation succeeded you will see the message in the picture.
772
  Click “Activate Plugin” button for activating the plugin.
@@ -943,3 +1006,73 @@ Alternatively, you can use form builder without the button on the toolbar. Add t
943
  6.9 The submissions can be exported to the CSV and XML formats.
944
 
945
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  Tags: form, forms, form builder, form maker, form manager, form plugin, form with recaptcha, forms plugin, multiple forms, paypal form, survey form, feedback form, feedback forms, contact form, contact form plugin, contact form builder, form creator, email form, secure form, web form, form to email, contact forms, custom forms, form widget, captcha form, wordpress contact form ,recaptcha contact form, form creation, contact form with auto reply, widget contact form, builder, feedback, contacts form plugin , custom contact form, contact us form, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, input, validation, send copy, form with captcha, pdf, mysql
5
  Requires at least: 3.4
6
  Tested up to: 4.4
7
+ Stable tag: 1.8.31
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
251
  = 1. What are the most common usage cases for the Form Maker? =
252
  The Form Maker can be used for creating multiple types of forms, including contact, evaluation, application forms, quizzes/tests or surveys, online order forms and etc. The Form Maker includes various types of fields which can be modified and edited.
253
 
254
+ = 2. Where are the forms submitted entries stored? =
255
 
256
  There is a Submissions section, where you will find the submitted entries. The entries can also be emailed to the Administrator. For this you should provide an email in Email Options section (located within Form Options). You can also fill in the data into a custom table using MySQL Mapping possibility, which makes it possible to store the data into another MySQL database.
257
 
302
  = 11. Can the email be sent to a specific email based on the selected field? =
303
  Unfortunately we do not have support for this feature. But we [Conditional Emails Add-on](https://web-dorado.com/products/wordpress-form/add-ons/conditional-emails.html).Using this add-on the user will be able to connect the fields with the administrator email. The field entry will serve as a condition for selecting the relevant administrator email.
304
 
305
+ = 12. Are there any limitations on the number of forms or entries to be used within a single website? =
306
+ There are no limitations on the number of entries per form. You can create unlimited number of forms within each website.
307
+
308
+ = 13. There is a code appearing instead of the contact form. =
309
+ Please make sure you have installed the latest version of the Form Maker. Try to deactivate the plugins and/or the theme. In this way you’ll find out the conflicts. If unable to resolve the issues, please contact us using this [form](https://web-dorado.com/support/contact-us.html).
310
+
311
+ = 14. Where are Form Maker stored submitted entries?
312
+ You may find submitted entries in your plugin. Go to your plugins list in WordPress toolbar > select Form Maker > Submission. The entries can also be emailed to Administrator. For this you should provide an email in Email Options section (located within Form Options). You can also fill in data into a custom table using Form Options->MySQL Mapping, which makes it possible to store the data into another MySQL database.
313
+
314
+ = 15. Can I skip submitting form data to the database and still receive emails? =
315
+ Yes, it is possible to have data emailed instead of being saved to database. The option should be selected from Form Options > General Options page.
316
+
317
+ = 16. Can submissions be visible to submitters? =
318
+ The front-end submissions functionality allows to display submissions on a page/post via shortcode. You could set the level of users, who can view submissions from; go to General Options > Form Options. In addition you may select the fields entries you want to be visible.
319
+
320
+ = 17. How can I export/import the submitted data of the forms? =
321
+ Form Maker has export CSV/XML options, which allow to export submitted data in corresponding form. Go to your plugins list in WordPress toolbar > select Form Maker > Submissions > Select form > Click Export to button > Save the file.
322
+
323
+ = 18. What verification methods does Form Maker use? =
324
+ Form Maker uses Simple Captcha, Arithmetical Capcha and Google v. 2.0 ReCaptcha options. Simple captcha uses standard word verification. Arithmetical Captcha requires the user to solve simple arithmetical expression. Captcha is the standard Google verification option.
325
+
326
+ = 19. What to do if I am receiving spam from some IPs? =
327
+ If you are receiving spam entries from a single or few IPs, you can use Blocking IPs option. In this way the stated IP user will no longer be able to submit a form. Go to your plugins list in WordPress toolbar > select Form Maker > Blocking IPs.
328
+
329
+ = 20. Can I email submissions to multiple recipients? =
330
+ Yes, Form Options->Email Options includes fields for adding CC and BCC email addresses.
331
+
332
+ = 21. Can the email be sent to a specific email based on the selected field? =
333
+ Unfortunately at the moment Form Maker do not have support for this feature. But we plan to include it as a separate Form Maker add-on. Using this add-on the user will be able to connect the fields with the administrator email. The field entry will serve as a condition for selecting the relevant administrator email.
334
+
335
+ = 22. Does Form Maker use auto-respondent feature? =
336
+ You can use Email Options of Form Maker to send a fully customizable letter to the submitter. The entries can be included within the email. Go to your plugins list in WordPress toolbar > select Form Maker > Select the form you want to edit > Form Options > Email Options.
337
+
338
+ = 23. an I have custom message sent to a user after submissions? =
339
+ Yes, you can include custom content within the email using the standard editor. Go to your plugins list in WordPress toolbar > select Form Maker > Select the form you want to edit > Form Options > Actions after Submission.
340
+
341
+ = 24. Can user be redirected to another page after submitting the form?
342
+ Users can be redirected to another page, and/or recieve custom message. Go to your plugins list in WordPress toolbar > select Form Maker > Select the form you want to edit > Form Options > Actions after Submission.
343
+
344
+ = 25. CWhat payment gateways does Form Maker support? =
345
+ Form Maker has simple PayPal integration. This allows users to select specific items and upon hitting submit button be redirected to PayPal. After making the payment, the user gets back to his/her website. We plan to include more payment options in future. The next release will include Stripe integration.
346
+
347
+ = 26. How to set up payment options? =
348
+ Firstly, you should go to Form Options > Payments. There you can provide a PayPal email, set up a currency and a mode. After saving the options you may add PayPal fields using standard Add fields functionality.
349
+ IMPORTANT: standard (none-PayPal) field values cannot be transferred to PayPal, so please add PayPal fields for payment purposes.
350
+
351
+ = 27. Does Form Maker have support for conditional logic? =
352
+ Yes, Form Maker uses conditional fields using which you can display/hide certain form fields.
353
+
354
+ = 28. How can I use Conditional Fields? =
355
+ Form Maker supports Conditional fields option. Users may find this feature in Form Options menu. The structure of conditional fields is the following: You can specify and/or show/hide a field, when condition is true and provide conditions below, e.g. Show “How many visitors will you have” if “Will you have visitors” is “Yes”.
356
+
357
+ = 29. What stylings do the forms include? =
358
+ Form Maker includes 20 editable themes.The forms use open CSS stylesheet, where you can modify CSS to change the font family, font sizes, margins, colors and etc. CSS changes can be directly made within a specific theme keeping the rest of the properties.
359
+
360
+ = 30. How to validate the entries to numbers? =
361
+ Form Maker uses phone and number field types, which are verified and do not accept text entries when entered.
362
+
363
+ = 31 Why should I use email type form field instead of standard text option? =
364
+ Email field should be used since it verifies that an entry format fulfills example@example.com format.
365
 
366
  == Changelog ==
367
 
368
+ = 1.8.31 =
369
+ Fixed: Issue with search in Submissions page
370
+
371
  = 1.8.30 =
372
  Added: Submission ID in csv export
373
 
829
  Go to Plugins Add > New > Upload.
830
  Click “Choose file” (“Browse”) and select the Form Maker zip file.
831
  *For Mac Users*
832
+ *Go to your Downloads folder and locate the folder with the plugin (form-maker.zip). Right-click on the folder and select Compress. Now you have a newly created .zip file which can be installed as described here.*
833
  Click “Install Now” button.
834
  If the installation succeeded you will see the message in the picture.
835
  Click “Activate Plugin” button for activating the plugin.
1006
  6.9 The submissions can be exported to the CSV and XML formats.
1007
 
1008
 
1009
+
1010
+ = Step 7: Blocking IPs +
1011
+ 6.1 Go to Plugins > Form Maker > Blocked IPs.
1012
+ 6.2 IP. Provide the IP address you want to block in the line.
1013
+ 6.3 Press Add IP button.
1014
+
1015
+ Note: Another option of blocking IPs can be done from the Submissions section. You should go to Form Maker > Submissions. Check the box in front of Spam submissions and press Block IP button at the top right corner. In addition you can unblock the IP using Unblock IP button in the same location.
1016
+
1017
+ = Step 8: Publishing submissions of the WordPress Form =
1018
+ 8.1 Press the button named Insert Form Maker in a post or a page you want to show the form.
1019
+ 8.2 Click on Submissions tab.
1020
+ 8.3 Select a Form. Using the dropdown list select the form.
1021
+ 8.4 Select Date Range. Specify the starting and ending dates for the date range for the submissions.
1022
+ 8.5 Select fields. Check the field types you want to display within the front end submissions. Please note that the list of the form fields should be defined in General Options unless you want all fields to be displayed.
1023
+ 8.6 Export to. Allow the users to export the submissions list in CSV and/or XML format. If you uncheck both options, the feature will not be displayed.
1024
+ 8.7 Show. Check the form-associated features to be displayed within the front end submissions page.
1025
+
1026
+ = Step 9: Export/Import =
1027
+ Form Maker Export/Import is a Form Maker capacity enhancing plugin. It uses a set of three easily adjustable sections.
1028
+ The first section allows exporting form submissions from a WordPress website to specific software which is capable of handling CSV or XML format files. This is specifically useful for the data analysis of the form entry with advanced analytical tools. The submissions can be selected for a specific range. You can include only the fields for the form required for the analysis.
1029
+ The second section is designed for exporting the forms and importing them to another location. The form submissions can also be exporting with the forms.
1030
+ The third section allows importing the previously exported forms. These two sections are useful for keeping the forms and their entries when moving for another website.
1031
+ The product is simple in use and does not require any coding experience.
1032
+
1033
+ Export Submissions
1034
+
1035
+ Go to Form Maker Export/Import>Export Submissions to export the submissions of the forms in use.
1036
+ Select a Form. Choose the corresponding form from the dropdown list for exporting the submissions.
1037
+ Select Fields. All form fields will be displayed here in rows. You can select all or specific fields to be included in the exported file. To do so you should check the box next to the field title.
1038
+ Select Date Range. This options is useful if you plan to get the entries for a specific period. Using the date pickers you can select the From and To dates.
1039
+ Export To. You can download the submissions in CSV and XML format choosing the button of the relevant format.
1040
+
1041
+ Export /Forms
1042
+
1043
+ Go to Form Maker Export/Import>Export Forms to export forms for further import to another location. This option is useful when you have to export forms from one website to another.
1044
+ Select Forms. The list of previously created forms will be displayed here. You can choose a single or multiple forms to export by checking the box.
1045
+ Export Submissions. In addition to the form, you can also transfer the submissions of it checking this option.
1046
+ Export To. The files (including forms with/without submissions) will be downloaded in XML format, when pressing the XML button.
1047
+
1048
+ Import Forms
1049
+
1050
+ Go to Form Maker Export/Import>Export Forms to import forms from another website to the current one.
1051
+ Select file. Press Choose File and select the form XML file, then press Select button.
1052
+
1053
+ = Save Progress =
1054
+ General Description
1055
+
1056
+ Do you use large applications and want to allow your users to finalize them later? Using Form Maker Save Progress you can let your users to start filling out the form and getting back to it at their convenience. Save button will be added to standard and Submit buttons, so that user can save the form at any time.
1057
+
1058
+ The add-on works only for registered users, including those who have subscriber user level. When logged in they can return to the form page, where they will see pre-filled data. The users will have two options: to continue where they have left off or change submitted data. For the last option they can use Clear button which will completely erase previously saved data.
1059
+
1060
+ Partial/Incomplete submissions will be stored in separate Saved Entries section when users press Save button. As a result no data will be lost, even if the form is not submitted at the end.
1061
+
1062
+ Installation
1063
+
1064
+ You should install Form Maker Save Progress add-on as a standard plugin. Go to Plugins section of your WordPress site, press Add new. Here select the downloaded zip file of the add-on and press Install Now. After the installation is completed press Activate button. Alternatively you can extract the plugin’s zip file and upload to your wp-content/plugins folder via FTP, then enter Plugins section and press Activate.
1065
+
1066
+ Save Progress Integration
1067
+
1068
+ Login to your WordPress site using administrator credentials. Navigate to Form Maker> Manager>Your Form. Hit Form Options button. Find Save Progress Tab. Activate the option and fill in further details. Finalize the changes pressing Save button.
1069
+
1070
+ Allow users to save progress? Enable this option to allow your users to save filled in data and return for further editing.
1071
+ Display clear button? If you want your user to be able to delete previously entered data and start filling in the form from scratch enable this option.
1072
+ Save data for. Specify number of days to keep drafted data in Saved entries. If not submitted, data will be completely erased after provided time period. Leave it to 0, if you don't want to erase data in general.
1073
+ Save message. Provide a message, which will be displayed to users when they press Save button after filling the form.
1074
+ Send email. Choose whether to send email to user when form is submitted or not.
1075
+ Send to. Choose the email field which will receive an email informing that form entry is saved.
1076
+ Email text. Provide custom text which will be sent to user when form entry is saved.
1077
+
1078
+