SendinBlue Subscribe Form And WP SMTP - Version 3.0.3

Version Description

  • Bug fixes & improvements
Download this release

Release Info

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

Code changes from version 3.0.2 to 3.0.3

Files changed (3) hide show
  1. inc/sib-api-manager.php +1 -1
  2. readme.txt +3 -0
  3. sendinblue.php +1 -1
inc/sib-api-manager.php CHANGED
@@ -245,7 +245,7 @@ if ( ! class_exists( 'SIB_API_Manager' ) ) {
245
  $mailin = new SendinblueApiClient( );
246
  try {
247
  if (isset($data['headers'])) {
248
- $emailHeaders = explode("\r\n", $data['headers']);
249
  unset($data['headers']);
250
  $preparedHeaders = [];
251
  foreach ($emailHeaders as $header) {
245
  $mailin = new SendinblueApiClient( );
246
  try {
247
  if (isset($data['headers'])) {
248
+ $emailHeaders = preg_split("/\r\n|\n|\r/", $data['headers']);
249
  unset($data['headers']);
250
  $preparedHeaders = [];
251
  foreach ($emailHeaders as $header) {
readme.txt CHANGED
@@ -112,6 +112,9 @@ In order to create a signup form, you need to:
112
  2. Integrate the form in a sidebar using a widget from WP panel > Appearance > Widgets. The Sendinblue widget form should appear in your widgets list, you just to have to drag and drop the widget into the sidebar of your choice.
113
 
114
  == Changelog ==
 
 
 
115
  = 3.0.2 =
116
  * Bug fixes & improvements
117
 
112
  2. Integrate the form in a sidebar using a widget from WP panel > Appearance > Widgets. The Sendinblue widget form should appear in your widgets list, you just to have to drag and drop the widget into the sidebar of your choice.
113
 
114
  == Changelog ==
115
+ = 3.0.3 =
116
+ * Bug fixes & improvements
117
+
118
  = 3.0.2 =
119
  * Bug fixes & improvements
120
 
sendinblue.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Sendinblue Subscribe Form And WP SMTP
4
  * Plugin URI: https://www.sendinblue.com/?r=wporg
5
  * Description: Easily send emails from your WordPress blog using Sendinblue SMTP and easily add a subscribe form to your site
6
- * Version: 3.0.2
7
  * Author: Sendinblue
8
  * Author URI: https://www.sendinblue.com/?r=wporg
9
  * License: GPLv2 or later
3
  * Plugin Name: Sendinblue Subscribe Form And WP SMTP
4
  * Plugin URI: https://www.sendinblue.com/?r=wporg
5
  * Description: Easily send emails from your WordPress blog using Sendinblue SMTP and easily add a subscribe form to your site
6
+ * Version: 3.0.3
7
  * Author: Sendinblue
8
  * Author URI: https://www.sendinblue.com/?r=wporg
9
  * License: GPLv2 or later