SendinBlue Subscribe Form And WP SMTP - Version 3.1.23

Version Description

  • Enhanced the security of website tracking via automation by skipping the password field from the forms.
Download this release

Release Info

Developer amarsib
Plugin Icon 128x128 SendinBlue Subscribe Form And WP SMTP
Version 3.1.23
Comparing to
See all releases

Code changes from version 3.1.22 to 3.1.23

inc/SendinblueApiClient.php CHANGED
@@ -14,7 +14,7 @@ class SendinblueApiClient
14
  const RESPONSE_CODE_CREATED = 201;
15
  const RESPONSE_CODE_ACCEPTED = 202;
16
  const RESPONSE_CODE_UNAUTHORIZED = 401;
17
- const PLUGIN_VERSION = '3.1.22';
18
  const USER_AGENT = 'sendinblue_plugins/wordpress';
19
 
20
  private $apiKey;
14
  const RESPONSE_CODE_CREATED = 201;
15
  const RESPONSE_CODE_ACCEPTED = 202;
16
  const RESPONSE_CODE_UNAUTHORIZED = 401;
17
+ const PLUGIN_VERSION = '3.1.23';
18
  const USER_AGENT = 'sendinblue_plugins/wordpress';
19
 
20
  private $apiKey;
js/mailin-front.js CHANGED
@@ -36,7 +36,7 @@ jQuery(document).ready(function(){
36
  var email = jQuery(this).find('input[type=email]').val();
37
  var emailPattern = /^([a-zA-Z0-9_.+-])+\@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/;
38
  if (typeof sendinblue != 'undefined' && email != null && emailPattern.test(email)) {
39
- var postData = jQuery(this).serializeObject();
40
  sendinblue.identify(email, postData);
41
  }
42
  }
36
  var email = jQuery(this).find('input[type=email]').val();
37
  var emailPattern = /^([a-zA-Z0-9_.+-])+\@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/;
38
  if (typeof sendinblue != 'undefined' && email != null && emailPattern.test(email)) {
39
+ var postData = jQuery('input[type!=password]',this).serializeObject();
40
  sendinblue.identify(email, postData);
41
  }
42
  }
readme.txt CHANGED
@@ -116,6 +116,9 @@ In order to create a signup form, you need to:
116
 
117
  == Changelog ==
118
 
 
 
 
119
  = 3.1.22 =
120
  * Improved the content of test email.
121
  * Fixed an issue related to slowness of plugin because of a mysql query.
116
 
117
  == Changelog ==
118
 
119
+ = 3.1.23 =
120
+ * Enhanced the security of website tracking via automation by skipping the password field from the forms.
121
+
122
  = 3.1.22 =
123
  * Improved the content of test email.
124
  * Fixed an issue related to slowness of plugin because of a mysql query.
sendinblue.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue
4
  * Plugin URI: https://www.sendinblue.com/?r=wporg
5
  * Description: Manage your contact lists, subscription forms and all email and marketing-related topics from your wp panel, within one single plugin
6
- * Version: 3.1.22
7
  * Author: Sendinblue
8
  * Author URI: https://www.sendinblue.com/?r=wporg
9
  * License: GPLv2 or later
3
  * Plugin Name: Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue
4
  * Plugin URI: https://www.sendinblue.com/?r=wporg
5
  * Description: Manage your contact lists, subscription forms and all email and marketing-related topics from your wp panel, within one single plugin
6
+ * Version: 3.1.23
7
  * Author: Sendinblue
8
  * Author URI: https://www.sendinblue.com/?r=wporg
9
  * License: GPLv2 or later