SendinBlue Subscribe Form And WP SMTP - Version 3.1.9

Version Description

Improvements

  • Fixed an issue related to transactional email getting distorted.
Download this release

Release Info

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

Code changes from version 3.1.8 to 3.1.9

Files changed (3) hide show
  1. inc/SendinblueApiClient.php +1 -1
  2. readme.txt +5 -0
  3. sendinblue.php +2 -2
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.8';
18
 
19
  private $apiKey;
20
  private $lastResponseCode;
14
  const RESPONSE_CODE_CREATED = 201;
15
  const RESPONSE_CODE_ACCEPTED = 202;
16
  const RESPONSE_CODE_UNAUTHORIZED = 401;
17
+ const PLUGIN_VERSION = '3.1.9';
18
 
19
  private $apiKey;
20
  private $lastResponseCode;
readme.txt CHANGED
@@ -115,6 +115,11 @@ In order to create a signup form, you need to:
115
 
116
  == Changelog ==
117
 
 
 
 
 
 
118
  = 3.1.8 =
119
  **Improvements**
120
 
115
 
116
  == Changelog ==
117
 
118
+ = 3.1.9 =
119
+ **Improvements**
120
+
121
+ * Fixed an issue related to transactional email getting distorted.
122
+
123
  = 3.1.8 =
124
  **Improvements**
125
 
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.8
7
  * Author: Sendinblue
8
  * Author URI: https://www.sendinblue.com/?r=wporg
9
  * License: GPLv2 or later
@@ -846,7 +846,7 @@ if ( ! class_exists( 'SIB_Manager' ) ) {
846
  if ( !empty( $headers ) ) {
847
  if( is_array( $headers ) ){
848
  foreach ($headers as $key => $val) {
849
- if( $val == "Content-Type: text/html" ){
850
  unset( $headers[$key] );
851
  }
852
  }
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.9
7
  * Author: Sendinblue
8
  * Author URI: https://www.sendinblue.com/?r=wporg
9
  * License: GPLv2 or later
846
  if ( !empty( $headers ) ) {
847
  if( is_array( $headers ) ){
848
  foreach ($headers as $key => $val) {
849
+ if( stripos($val, "Content-Type: text/html") !== false ) {
850
  unset( $headers[$key] );
851
  }
852
  }