Email Subscribers & Newsletters - Version 4.3.10

Version Description

Download this release

Release Info

Developer Icegram
Plugin Icon 128x128 Email Subscribers & Newsletters
Version 4.3.10
Comparing to
See all releases

Code changes from version 4.3.9 to 4.3.10

email-subscribers.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: https://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
6
- * Version: 4.3.9
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
@@ -29,7 +29,7 @@ if ( ! defined( 'WPINC' ) ) {
29
  * @since 4.3.0
30
  */
31
  if ( ! defined( 'IG_ES_FEEDBACK_TRACKER_VERSION' ) ) {
32
- define( 'IG_ES_FEEDBACK_TRACKER_VERSION', '1.0.15' );
33
  }
34
 
35
 
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: https://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
6
+ * Version: 4.3.10
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
29
  * @since 4.3.0
30
  */
31
  if ( ! defined( 'IG_ES_FEEDBACK_TRACKER_VERSION' ) ) {
32
+ define( 'IG_ES_FEEDBACK_TRACKER_VERSION', '1.0.16' );
33
  }
34
 
35
 
lite/includes/es-backward.php CHANGED
@@ -24,7 +24,12 @@ class es_cls_dbquery {
24
  return;
25
  }
26
 
27
- $email = trim( $data['es_email_mail'] );
 
 
 
 
 
28
  $name = trim( $data['es_email_name'] );
29
  $last_name = '';
30
  if ( ! empty( $name ) ) {
24
  return;
25
  }
26
 
27
+ $email = trim( $data['es_email_mail'] );
28
+
29
+ if ( ! is_email( $email ) ) {
30
+ return;
31
+ }
32
+
33
  $name = trim( $data['es_email_name'] );
34
  $last_name = '';
35
  if ( ! empty( $name ) ) {
lite/includes/feedback.php CHANGED
@@ -54,7 +54,7 @@ function ig_es_render_general_feedback_widget() {
54
  'width' => 700,
55
  'force' => true,
56
  'confirmButtonText' => __( 'Send', 'email-subscribers' ),
57
- 'consent_text' => __( 'Allow Email Subscribers to send plugin settings. It will help us to understand your issue better. We guarantee no sensitive data is collected.', 'email-subscribers' ),
58
  'name' => ''
59
  );
60
 
54
  'width' => 700,
55
  'force' => true,
56
  'confirmButtonText' => __( 'Send', 'email-subscribers' ),
57
+ 'consent_text' => __( 'Allow Email Subscribers to track plugin usage. It will help us to understand your issue better. We guarantee no sensitive data is collected.', 'email-subscribers' ),
58
  'name' => ''
59
  );
60
 
lite/includes/feedback/class-ig-feedback.php CHANGED
@@ -4,21 +4,21 @@ if ( ! defined( 'ABSPATH' ) ) {
4
  exit; // Exit if accessed directly.
5
  }
6
 
7
- if ( ! class_exists( 'IG_Feedback_V_1_0_15' ) ) {
8
  /**
9
  * IG Feedback
10
  *
11
  * The IG Feedback class adds functionality to get quick interactive feedback from users.
12
  * There are different types of feedabck widget like Stars, Emoji, Thubms Up/ Down, Number etc.
13
  *
14
- * @class IG_Feedback_V_1_0_15
15
  * @since 1.0.0
16
  * @copyright Copyright (c) 2019, Icegram
17
  * @license https://opensource.org/licenses/gpl-license GNU Public License
18
  * @author Icegram
19
  * @package feedback
20
  */
21
- class IG_Feedback_V_1_0_15 {
22
 
23
  /**
24
  * Version of Feedback Library
@@ -27,7 +27,7 @@ if ( ! class_exists( 'IG_Feedback_V_1_0_15' ) ) {
27
  * @var string
28
  *
29
  */
30
- public $version = '1.0.15';
31
  /**
32
  * The API URL where we will send feedback data.
33
  *
@@ -1248,7 +1248,6 @@ if ( ! class_exists( 'IG_Feedback_V_1_0_15' ) ) {
1248
  public function is_plugin_page() {
1249
 
1250
  $screen = function_exists( 'get_current_screen' ) ? get_current_screen() : false;
1251
-
1252
  if ( empty( $screen ) ) {
1253
  return false;
1254
  }
@@ -1443,9 +1442,10 @@ if ( ! class_exists( 'IG_Feedback_V_1_0_15' ) ) {
1443
  unset( $data['misc'] );
1444
 
1445
  $default_meta_info = array(
1446
- 'plugin' => sanitize_key( $plugin ),
1447
- 'locale' => get_locale(),
1448
- 'wp_version' => get_bloginfo( 'version' )
 
1449
  );
1450
 
1451
  $meta_info = wp_parse_args( $meta_info, $default_meta_info );
4
  exit; // Exit if accessed directly.
5
  }
6
 
7
+ if ( ! class_exists( 'IG_Feedback_V_1_0_16' ) ) {
8
  /**
9
  * IG Feedback
10
  *
11
  * The IG Feedback class adds functionality to get quick interactive feedback from users.
12
  * There are different types of feedabck widget like Stars, Emoji, Thubms Up/ Down, Number etc.
13
  *
14
+ * @class IG_Feedback_V_1_0_16
15
  * @since 1.0.0
16
  * @copyright Copyright (c) 2019, Icegram
17
  * @license https://opensource.org/licenses/gpl-license GNU Public License
18
  * @author Icegram
19
  * @package feedback
20
  */
21
+ class IG_Feedback_V_1_0_16 {
22
 
23
  /**
24
  * Version of Feedback Library
27
  * @var string
28
  *
29
  */
30
+ public $version = '1.0.16';
31
  /**
32
  * The API URL where we will send feedback data.
33
  *
1248
  public function is_plugin_page() {
1249
 
1250
  $screen = function_exists( 'get_current_screen' ) ? get_current_screen() : false;
 
1251
  if ( empty( $screen ) ) {
1252
  return false;
1253
  }
1442
  unset( $data['misc'] );
1443
 
1444
  $default_meta_info = array(
1445
+ 'plugin' => sanitize_key( $plugin ),
1446
+ 'locale' => get_locale(),
1447
+ 'wp_version' => get_bloginfo( 'version' ),
1448
+ 'php_version' => PHP_VERSION
1449
  );
1450
 
1451
  $meta_info = wp_parse_args( $meta_info, $default_meta_info );
lite/includes/feedback/class-ig-tracker.php CHANGED
@@ -4,15 +4,15 @@ if ( ! defined( 'ABSPATH' ) ) {
4
  exit; // Exit if accessed directly.
5
  }
6
 
7
- if ( ! class_exists( 'IG_Tracker_V_1_0_15' ) ) {
8
 
9
  /**
10
- * Class IG_Tracker_V_1_0_15
11
  *
12
  * Icegram tracker handler class is responsible for sending anonymous plugin
13
  * data to Icegram servers for users that actively allowed data tracking.
14
  *
15
- * @class IG_Tracker_V_1_0_15
16
  * @since 1.0.0
17
  *
18
  * @copyright Copyright (c) 2019, Icegram
@@ -20,7 +20,7 @@ if ( ! class_exists( 'IG_Tracker_V_1_0_15' ) ) {
20
  * @author Icegram
21
  * @package feedback
22
  */
23
- class IG_Tracker_V_1_0_15 {
24
 
25
  /**
26
  * Get Active, Inactive or all plugins info
4
  exit; // Exit if accessed directly.
5
  }
6
 
7
+ if ( ! class_exists( 'IG_Tracker_V_1_0_16' ) ) {
8
 
9
  /**
10
+ * Class IG_Tracker_V_1_0_16
11
  *
12
  * Icegram tracker handler class is responsible for sending anonymous plugin
13
  * data to Icegram servers for users that actively allowed data tracking.
14
  *
15
+ * @class IG_Tracker_V_1_0_16
16
  * @since 1.0.0
17
  *
18
  * @copyright Copyright (c) 2019, Icegram
20
  * @author Icegram
21
  * @package feedback
22
  */
23
+ class IG_Tracker_V_1_0_16 {
24
 
25
  /**
26
  * Get Active, Inactive or all plugins info
lite/languages/email-subscribers.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Email Subscribers & Newsletters\n"
5
  "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2019-12-23 09:08+0000\n"
7
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9
  "Language-Team: \n"
@@ -288,8 +288,8 @@ msgstr ""
288
 
289
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:125
290
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:186
291
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1075
292
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1096
293
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:50
294
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:45
295
  msgid "Please select list."
@@ -709,6 +709,7 @@ msgid ""
709
  msgstr ""
710
 
711
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:141
 
712
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-form-widget.php:11
713
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-old-widget.php:11
714
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-old-widget.php:12
@@ -748,7 +749,7 @@ msgstr ""
748
  msgid "Settings"
749
  msgstr ""
750
 
751
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-email-subscribers.php:291
752
  #, php-format
753
  msgid ""
754
  "WordPress Cron is disable on your site. Email notifications from Email "
@@ -756,23 +757,23 @@ msgid ""
756
  "target=\"_blank\" >Here's how you can enable it.</a>"
757
  msgstr ""
758
 
759
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-email-subscribers.php:292
760
  #, php-format
761
  msgid "Or schedule Cron in <a href=\"%s\" target=\"_blank\">cPanel</a>"
762
  msgstr ""
763
 
764
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-email-subscribers.php:293
765
  #, php-format
766
  msgid ""
767
  "Or use <strong><a href=\"%s\" target=\"_blank\">Email Subscribers Pro</a>"
768
  "</strong> for automatic Cron support"
769
  msgstr ""
770
 
771
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-email-subscribers.php:294
772
  msgid "OK, I Got it!"
773
  msgstr ""
774
 
775
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-email-subscribers.php:871
776
  #, php-format
777
  msgid "%1$s in %2$s on line %3$s"
778
  msgstr ""
@@ -853,34 +854,34 @@ msgid ""
853
  "spam/junk folder."
854
  msgstr ""
855
 
856
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:57
857
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:84
858
  msgid "Send"
859
  msgstr ""
860
 
861
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:58
862
  msgid ""
863
- "Allow Email Subscribers to send plugin settings. It will help us to "
864
- "understand your issue better. We guarantee no sensitive data is collected."
865
  msgstr ""
866
 
867
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:119
868
  msgid "Not a member yet?"
869
  msgstr ""
870
 
871
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:121
872
  msgid "Join"
873
  msgstr ""
874
 
875
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:121
876
  msgid "Email Subscribers Secret Club"
877
  msgstr ""
878
 
879
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:121
880
  msgid "on Facebook"
881
  msgstr ""
882
 
883
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:125
884
  msgid "Join Now"
885
  msgstr ""
886
 
@@ -1727,7 +1728,7 @@ msgstr ""
1727
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:165
1728
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:168
1729
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:339
1730
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:802
1731
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:310
1732
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:693
1733
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:263
@@ -1741,8 +1742,8 @@ msgid "Choose a FROM name for all the emails to be sent from this plugin."
1741
  msgstr ""
1742
 
1743
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:174
1744
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:600
1745
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:803
1746
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:295
1747
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:303
1748
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:90
@@ -2196,88 +2197,88 @@ msgstr ""
2196
  msgid "Add New"
2197
  msgstr ""
2198
 
2199
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:364
2200
  msgid "Contact already exist."
2201
  msgstr ""
2202
 
2203
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:401
2204
  msgid "Contact has been added successfully!"
2205
  msgstr ""
2206
 
2207
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:403
2208
  msgid "Contact has been updated successfully!"
2209
  msgstr ""
2210
 
2211
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:410
2212
  msgid "Please Enter First Name"
2213
  msgstr ""
2214
 
2215
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:415
2216
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:33
2217
  msgid "Please Select List"
2218
  msgstr ""
2219
 
2220
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:420
2221
  msgid "Please Enter Valid Email Address"
2222
  msgstr ""
2223
 
2224
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:582
2225
  msgid "No list found"
2226
  msgstr ""
2227
 
2228
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:590
2229
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:293
2230
  msgid "First Name"
2231
  msgstr ""
2232
 
2233
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:595
2234
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:294
2235
  msgid "Last Name"
2236
  msgstr ""
2237
 
2238
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:606
2239
  msgid "Send Welcome Email?"
2240
  msgstr ""
2241
 
2242
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:613
2243
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:804
2244
  msgid "List(s)"
2245
  msgstr ""
2246
 
2247
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:624
2248
  msgid "Save Changes"
2249
  msgstr ""
2250
 
2251
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:639
2252
  msgid "No contacts avaliable."
2253
  msgstr ""
2254
 
2255
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:783
2256
  #, php-format
2257
  msgid "<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\">Edit</a>"
2258
  msgstr ""
2259
 
2260
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:784
2261
  #, php-format
2262
  msgid ""
2263
  "<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\" onclick=\"return "
2264
  "checkDelete()\">Delete</a>"
2265
  msgstr ""
2266
 
2267
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:787
2268
  #, php-format
2269
  msgid ""
2270
  "<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\">Resend "
2271
  "Confirmation<a>"
2272
  msgstr ""
2273
 
2274
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:805
2275
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:695
2276
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:501
2277
  msgid "Created"
2278
  msgstr ""
2279
 
2280
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:838
2281
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:723
2282
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:530
2283
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:254
@@ -2285,56 +2286,56 @@ msgstr ""
2285
  msgid "Delete"
2286
  msgstr ""
2287
 
2288
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:839
2289
  msgid "Move To List"
2290
  msgstr ""
2291
 
2292
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:840
2293
  msgid "Add To List"
2294
  msgstr ""
2295
 
2296
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:841
2297
  msgid "Change Status"
2298
  msgstr ""
2299
 
2300
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:862
2301
  msgid "Search Contacts"
2302
  msgstr ""
2303
 
2304
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:867
2305
  msgid "All Statuses"
2306
  msgstr ""
2307
 
2308
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:873
2309
  msgid "All Lists"
2310
  msgstr ""
2311
 
2312
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:978
2313
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1043
2314
  msgid "Contact(s) have been deleted successfully!"
2315
  msgstr ""
2316
 
2317
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1004
2318
  msgid "Confirmation email has been sent successfully!"
2319
  msgstr ""
2320
 
2321
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1031
2322
  msgid "Please select subscribers to update."
2323
  msgstr ""
2324
 
2325
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1054
2326
  msgid "Please select status."
2327
  msgstr ""
2328
 
2329
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1064
2330
  msgid "Status has been changed successfully!"
2331
  msgstr ""
2332
 
2333
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1084
2334
  msgid "Contact(s) have been moved to list successfully!"
2335
  msgstr ""
2336
 
2337
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1105
2338
  msgid "Contact(s) have been added to list successfully!"
2339
  msgstr ""
2340
 
@@ -2644,64 +2645,64 @@ msgstr ""
2644
  msgid "Sorry, you do not have permission to import contacts."
2645
  msgstr ""
2646
 
2647
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:153
2648
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:157
2649
  #, php-format
2650
  msgid "Total %d contacts have been imported successfully!"
2651
  msgstr ""
2652
 
2653
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:161
2654
  #, php-format
2655
  msgid "%d contacts are already exists."
2656
  msgstr ""
2657
 
2658
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:166
2659
  #, php-format
2660
  msgid "%d contacts are invalid."
2661
  msgstr ""
2662
 
2663
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:176
2664
  msgid "Error: Please Select List"
2665
  msgstr ""
2666
 
2667
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:180
2668
  msgid "Error: Please select status"
2669
  msgstr ""
2670
 
2671
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:184
2672
  msgid "Error: Please Upload only CSV File"
2673
  msgstr ""
2674
 
2675
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:188
2676
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:192
2677
  msgid "Error: Please Upload File"
2678
  msgstr ""
2679
 
2680
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:211
2681
  msgid "Select CSV file"
2682
  msgstr ""
2683
 
2684
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:213
2685
  msgid "Check CSV structure"
2686
  msgstr ""
2687
 
2688
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:214
2689
  msgid "from here"
2690
  msgstr ""
2691
 
2692
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:225
2693
  msgid "Select status"
2694
  msgstr ""
2695
 
2696
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:237
2697
  msgid "Select list"
2698
  msgstr ""
2699
 
2700
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:250
2701
  msgid "Import"
2702
  msgstr ""
2703
 
2704
- #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:272
2705
  msgid "Audience > Import Contacts"
2706
  msgstr ""
2707
 
3
  msgstr ""
4
  "Project-Id-Version: Email Subscribers & Newsletters\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2020-01-16 12:14+0000\n"
7
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9
  "Language-Team: \n"
288
 
289
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:125
290
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:186
291
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1095
292
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1116
293
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:50
294
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:45
295
  msgid "Please select list."
709
  msgstr ""
710
 
711
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:141
712
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-email-subscribers.php:817
713
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-form-widget.php:11
714
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-old-widget.php:11
715
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-old-widget.php:12
749
  msgid "Settings"
750
  msgstr ""
751
 
752
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-email-subscribers.php:299
753
  #, php-format
754
  msgid ""
755
  "WordPress Cron is disable on your site. Email notifications from Email "
757
  "target=\"_blank\" >Here's how you can enable it.</a>"
758
  msgstr ""
759
 
760
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-email-subscribers.php:300
761
  #, php-format
762
  msgid "Or schedule Cron in <a href=\"%s\" target=\"_blank\">cPanel</a>"
763
  msgstr ""
764
 
765
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-email-subscribers.php:301
766
  #, php-format
767
  msgid ""
768
  "Or use <strong><a href=\"%s\" target=\"_blank\">Email Subscribers Pro</a>"
769
  "</strong> for automatic Cron support"
770
  msgstr ""
771
 
772
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-email-subscribers.php:302
773
  msgid "OK, I Got it!"
774
  msgstr ""
775
 
776
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-email-subscribers.php:902
777
  #, php-format
778
  msgid "%1$s in %2$s on line %3$s"
779
  msgstr ""
854
  "spam/junk folder."
855
  msgstr ""
856
 
857
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:56
858
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:83
859
  msgid "Send"
860
  msgstr ""
861
 
862
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:57
863
  msgid ""
864
+ "Allow Email Subscribers to track plugin usage. It will help us to understand "
865
+ "your issue better. We guarantee no sensitive data is collected."
866
  msgstr ""
867
 
868
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:118
869
  msgid "Not a member yet?"
870
  msgstr ""
871
 
872
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:120
873
  msgid "Join"
874
  msgstr ""
875
 
876
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:120
877
  msgid "Email Subscribers Secret Club"
878
  msgstr ""
879
 
880
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:120
881
  msgid "on Facebook"
882
  msgstr ""
883
 
884
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:124
885
  msgid "Join Now"
886
  msgstr ""
887
 
1728
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:165
1729
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:168
1730
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:339
1731
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:822
1732
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:310
1733
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:693
1734
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:263
1742
  msgstr ""
1743
 
1744
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:174
1745
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:620
1746
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:823
1747
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:295
1748
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:303
1749
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:90
2197
  msgid "Add New"
2198
  msgstr ""
2199
 
2200
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:354
2201
  msgid "Contact already exist."
2202
  msgstr ""
2203
 
2204
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:421
2205
  msgid "Contact has been added successfully!"
2206
  msgstr ""
2207
 
2208
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:423
2209
  msgid "Contact has been updated successfully!"
2210
  msgstr ""
2211
 
2212
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:430
2213
  msgid "Please Enter First Name"
2214
  msgstr ""
2215
 
2216
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:435
2217
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:33
2218
  msgid "Please Select List"
2219
  msgstr ""
2220
 
2221
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:440
2222
  msgid "Please Enter Valid Email Address"
2223
  msgstr ""
2224
 
2225
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:602
2226
  msgid "No list found"
2227
  msgstr ""
2228
 
2229
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:610
2230
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:293
2231
  msgid "First Name"
2232
  msgstr ""
2233
 
2234
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:615
2235
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:294
2236
  msgid "Last Name"
2237
  msgstr ""
2238
 
2239
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:626
2240
  msgid "Send Welcome Email?"
2241
  msgstr ""
2242
 
2243
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:633
2244
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:824
2245
  msgid "List(s)"
2246
  msgstr ""
2247
 
2248
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:644
2249
  msgid "Save Changes"
2250
  msgstr ""
2251
 
2252
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:659
2253
  msgid "No contacts avaliable."
2254
  msgstr ""
2255
 
2256
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:803
2257
  #, php-format
2258
  msgid "<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\">Edit</a>"
2259
  msgstr ""
2260
 
2261
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:804
2262
  #, php-format
2263
  msgid ""
2264
  "<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\" onclick=\"return "
2265
  "checkDelete()\">Delete</a>"
2266
  msgstr ""
2267
 
2268
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:807
2269
  #, php-format
2270
  msgid ""
2271
  "<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\">Resend "
2272
  "Confirmation<a>"
2273
  msgstr ""
2274
 
2275
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:825
2276
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:695
2277
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:501
2278
  msgid "Created"
2279
  msgstr ""
2280
 
2281
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:858
2282
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:723
2283
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:530
2284
  #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:254
2286
  msgid "Delete"
2287
  msgstr ""
2288
 
2289
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:859
2290
  msgid "Move To List"
2291
  msgstr ""
2292
 
2293
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:860
2294
  msgid "Add To List"
2295
  msgstr ""
2296
 
2297
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:861
2298
  msgid "Change Status"
2299
  msgstr ""
2300
 
2301
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:882
2302
  msgid "Search Contacts"
2303
  msgstr ""
2304
 
2305
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:887
2306
  msgid "All Statuses"
2307
  msgstr ""
2308
 
2309
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:893
2310
  msgid "All Lists"
2311
  msgstr ""
2312
 
2313
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:998
2314
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1063
2315
  msgid "Contact(s) have been deleted successfully!"
2316
  msgstr ""
2317
 
2318
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1024
2319
  msgid "Confirmation email has been sent successfully!"
2320
  msgstr ""
2321
 
2322
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1051
2323
  msgid "Please select subscribers to update."
2324
  msgstr ""
2325
 
2326
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1074
2327
  msgid "Please select status."
2328
  msgstr ""
2329
 
2330
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1084
2331
  msgid "Status has been changed successfully!"
2332
  msgstr ""
2333
 
2334
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1104
2335
  msgid "Contact(s) have been moved to list successfully!"
2336
  msgstr ""
2337
 
2338
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1125
2339
  msgid "Contact(s) have been added to list successfully!"
2340
  msgstr ""
2341
 
2645
  msgid "Sorry, you do not have permission to import contacts."
2646
  msgstr ""
2647
 
2648
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:154
2649
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:158
2650
  #, php-format
2651
  msgid "Total %d contacts have been imported successfully!"
2652
  msgstr ""
2653
 
2654
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:162
2655
  #, php-format
2656
  msgid "%d contacts are already exists."
2657
  msgstr ""
2658
 
2659
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:167
2660
  #, php-format
2661
  msgid "%d contacts are invalid."
2662
  msgstr ""
2663
 
2664
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:177
2665
  msgid "Error: Please Select List"
2666
  msgstr ""
2667
 
2668
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:181
2669
  msgid "Error: Please select status"
2670
  msgstr ""
2671
 
2672
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:185
2673
  msgid "Error: Please Upload only CSV File"
2674
  msgstr ""
2675
 
2676
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:189
2677
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:193
2678
  msgid "Error: Please Upload File"
2679
  msgstr ""
2680
 
2681
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:212
2682
  msgid "Select CSV file"
2683
  msgstr ""
2684
 
2685
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:214
2686
  msgid "Check CSV structure"
2687
  msgstr ""
2688
 
2689
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:215
2690
  msgid "from here"
2691
  msgstr ""
2692
 
2693
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:226
2694
  msgid "Select status"
2695
  msgstr ""
2696
 
2697
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:238
2698
  msgid "Select list"
2699
  msgstr ""
2700
 
2701
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:251
2702
  msgid "Import"
2703
  msgstr ""
2704
 
2705
+ #: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:273
2706
  msgid "Audience > Import Contacts"
2707
  msgstr ""
2708
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Author URI: https://www.icegram.com/
5
  Tags: subscription, newsletter, email marketing, post notification, email newsletter form, email signup, email widget, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation, welcome email, contacts
6
  Requires at least: 3.9
7
  Tested up to: 5.3.2
8
- Stable tag: 4.3.9
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses
11
 
@@ -299,11 +299,17 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
299
 
300
  == Changelog ==
301
 
 
 
 
 
302
  **4.3.9 (08.01.2020)**
 
303
  * Update: Added compatibility with Outlook mailer of WP Mail SMTP plugin. (Thanks to [@kinderkeuken](https://profiles.wordpress.org/kinderkeuken/) for help us debugging)
304
  * Fix: Duplicate email import issue.
305
 
306
  **4.3.8 (25.12.2019)**
 
307
  * Fix: Include Javascript issue with localised WordPress
308
  * Fix: Duplicate entries of contacts
309
 
@@ -312,36 +318,43 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
312
  * Fix: Multiple emails to contacts
313
 
314
  **4.3.6 (12.12.2019)**
 
315
  * Update: Improve on boarding
316
  * Fix: Count shows zero (0) even if contacts available in list
317
  * Fix: File with ".CSV" (uppercase) extension was not working with import contacts.
318
  * Fix: Incorrect unsubscribed contacts count
319
 
320
  **4.3.5.1 (07.12.2019)**
 
321
  * Update: Improved edit contact
322
  * Fix: Contacts removed from the list when new subscriber subscribed to the list
323
  * Fix: WordPress contact sync issue
324
 
325
  **4.3.5 (04.12.2019)**
 
326
  * New: Added setting to set cron interval
327
  * New: Added setting to set maximum emails to send on every cron request
328
  * Fix: Illegal string offset ‘es_registered’ warning
329
 
330
  **4.3.4.1 (29.11.2019)**
 
331
  * Fix: Delete Campaigns Permanently issue
332
  * Fix: Security issues
333
  * Update: Considered HTTP_X_REAL_IP while getting user IP address
334
 
335
  **4.3.4 (28.11.2019)**
 
336
  * Update: Delete Campaigns Permanently which are already deleted before
337
  * Fix: Import issue
338
  * Fix: Multiple email sending issue
339
 
340
  **4.3.3 (25.11.2019)**
 
341
  * Fix: Cron Lock issue
342
  * Fix: Honeypot issue with caching plugin
343
 
344
  **4.3.2 (20.11.2019)**
 
345
  * New: Added basic reporting like total subscribed, unsubscribed, open in last 60 days in audience dashboard
346
  * New: Added Pre header in broadcast
347
  * Update: Clear all cron on deactivation
@@ -351,6 +364,7 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
351
  * Fix: Unsubscribe link issue
352
 
353
  **4.3.1 (13.11.2019)**
 
354
  * New: Delete Form Permanently
355
  * New: Delete List Permanently
356
  * Update: Restrict multiple email sending
@@ -361,6 +375,7 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
361
  * Fix: Fatal error
362
 
363
  **4.3.0 (06.11.2019)**
 
364
  * Fix: Test email sending issue
365
  * Fix: New Broadcast issue
366
  * Fix: Import contacts issue
@@ -368,11 +383,13 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
368
  * Update: .POT File
369
 
370
  **4.2.4 (23.10.2019)**
 
371
  * Update: Improve Create Broadcast UI
372
  * Fix: Unable to remove label for Email field in Subscription Form
373
  * Fix: Validate Post Notification data
374
 
375
  **4.2.3 (17.10.2019)**
 
376
  * Update: Now, only administrator can access Email Subscribers menus.
377
  * Fix: Email open tracking
378
  * Fix: Vulnerability while exporting contacts
@@ -380,56 +397,68 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
380
  * Fix: Check permission before saving settings
381
 
382
  **4.2.2 (15.10.2019)**
 
383
  * New: Added configuration option for label & placeholder for subscription form
384
  * Update: Ask subscribers for confirmation before unsubscription
385
  * Fix: Unsubscription issue
386
 
387
  **4.2.1 (10.10.2019)**
 
388
  * Update: Added per page screen option for Contacts, Forms, Lists & Campaigns
389
 
390
  **4.2.0 (01.10.2019)**
 
391
  * New: [Pepipost](https://pepipost.com/?utm_source=icegram&utm_medium=es_inapp&utm_campaign=pepipost) api support for email sending
392
 
393
  **4.1.15 (12.09.2019)**
 
394
  * New: Stop email sending if hourly email sending limit exceeded.
395
  * Update: Added option to customize message after form submission (Email Subscribers > Settings Menu)
396
  * Fixed: Import contacts issue
397
 
398
  **4.1.14 (28.08.2019)**
 
399
  * New: Import First Name & Last Name
400
  * Update: Added "Send Welcome email" option to send out Welcome Email.
401
  * Fix: Multiple Welcome & Admin email notification on clicking confirmation link multiple times
402
 
403
  **4.1.13 (20.08.2019)**
 
404
  * New: Added option to select "All Categories" in post notifications.
405
  * New: Send "Welcome Email" to contact which are being added from Audience dashboard
406
  * Fix: All Post Notifications were sent for the post with no category selected
407
  * Fix: Typo
408
 
409
  **4.1.12 (07.08.2019)**
 
410
  * Fix: Set post categories correctly after migration
411
  * Fix: Get all lists from email list & notification tables
412
 
413
  **4.1.11 (02.08.2019)**
 
414
  * Fix: Send multiple email notification issue
415
 
416
  **4.1.10 (31.07.2019)**
 
417
  * Update: Added viewed count on reports page
418
  * Fix: Shortcodes were not working in email templates
419
  * Fix: Viewed status was not getting updated
420
  * Fix: Migration issues in reports
421
 
422
  **4.1.9 (25.07.2019)**
 
423
  * Update: Admin notification will be sent out only after contacts confirm their subscription
424
  * Update: Show Post Notifications categories in campaigns view
425
  * Fix: Sort contacts by name
426
  * Fix: Email Notification formatting issue
427
 
428
  **4.1.8 (16.07.2019)**
 
429
  * New: Now, admin can add/ edit First Name & Last Name of subscribers.
430
  * Fix: Fixed Vulnerabilities (Thanks Tin Duong of Fortinet's FortiGuard Labs, WordPress Plugin Review Team & Ihor Voschyk for reporting)
431
 
432
  **4.1.7 (15.07.2019)**
 
433
  * Update: Now, able to sort reports by Subject, Status, Start Date, End Date & Total Contacts
434
  * Update: Now, able to sort forms by Name & Created date
435
  * Update: Now, email template will pick up the latest content while email sending
@@ -438,52 +467,64 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
438
  * Fix: Fixed Vulnerability
439
 
440
  **4.1.6 (01.07.2019)**
 
441
  * Update: Added sorting for name field in Audience tab
442
  * Fix: Warning: Illegal string offset 'es_registered'
443
  * Fix: Set list name blank in campaign list page
444
  * Fix: Contacts sort by email was not working.
445
 
446
  **4.1.5 (20.06.2019)**
 
447
  * Update: Added "Opt-In Type" column in exported contacts lists
448
  * Update: Allow to send broadcast only if contacts are available in list
449
  * Fix: "Select the list" error
450
 
451
  **4.1.4 (13.06.2019)**
 
452
  * New: Added First Name, Last Name in exported csv file
453
  * New: Added {{FIRSTNAME}}, {{LASTNAME}} keyword
454
  * Update: Improve subscription form layout.
455
 
456
  **4.1.3 (06.06.2019)**
 
457
  * New: Export contacts by list
458
 
459
  **4.1.2.2 (31.05.2019)**
 
460
  * Fix: Fatal error: Call to undefined function get_plugins()
461
 
462
  **4.1.2.1 (30.05.2019)**
 
463
  * Fix: Unable to use sync functionality
464
 
465
  **4.1.2 (29.05.2019)**
 
466
  * New: Added support to export "Unconfirmed" contacts.
467
 
468
  **4.1.1 (21.05.2019)**
 
469
  * Fix: "Oops.. Unexpected error occurred" while subscribing
470
  * Fix: Typo in "Campaigns > Edit Post Notification" title
471
  * Fix: Duplicate lists while syncing WordPress users
472
 
473
  **4.1 (14.05.2019)**
 
474
  * New: Now, able to change the label of "Subscribe" button
475
 
476
  **4.0.18 (07.05.2019)**
 
477
  * New : Added a feature to duplicate any template
478
  * New : Added support to re run database migration from ES 3.5.18
479
  * Fix : Display "0" above form
480
  * Fix : Migration issue
481
 
482
  **4.0.17 (03.05.2019)**
 
483
  * New : New keywords added : {{TOTAL-CONTACTS}} in form description
484
  * Fix : Post/page editor issue with RTL sites
485
 
486
  **4.0.16 (23.04.2019)**
 
487
  * New : New keywords added : {{TOTAL-CONTACTS}} , {{SITEURL}}, {{SITENAME}}
488
  * New : Added option to enable/ disable WordPress Cron for Email Subscribers
489
  * New : Added option to enable/ disable email open tracking
@@ -491,21 +532,25 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
491
  * Fix : Incorrect viewed and sent dates in report details
492
 
493
  **4.0.15 (17.04.2019)**
 
494
  * Fix: Error with Gutenberg editor
495
  * Fix: Media Upload Error
496
  * Fix: WordPress Media Library grid issue
497
  * Fix: Database error
498
 
499
  **4.0.14.1 (16.04.2019)**
 
500
  * Fix: CSS issue
501
 
502
  **4.0.14 (15.04.2019)**
 
503
  * Fix : Added plain text email content for html email
504
  * Fix : Email confirmation fails if address contains ‘+’
505
  * Fix : Migration issue
506
  * Update: POT file
507
 
508
  **4.0.13 (05.04.2019)**
 
509
  * Fix : Plain text email does not decode HTML entities
510
  * Fix : Not able to select category with special charterers in post notification
511
  * Fix : Not able to send email using Amazon SES
@@ -514,29 +559,34 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
514
  * Update: POT file
515
 
516
  **4.0.12 (01.04.2019)**
 
517
  * Fix : Parse error: syntax error, unexpected T_FUNCTION
518
  * Update: Remove old css
519
  * Update: POT file
520
 
521
  **4.0.11 (26.03.2019)**
 
522
  * New : Added "Add to List" option to the bulk actions of contacts
523
  * New : Link contacts from list view
524
  * Update: Additional security check while opt-in and unsubscription
525
  * Fix : PHP Fatal error: Cannot redeclare temp_filter_category()
526
 
527
  **4.0.10 (20.03.2019)**
 
528
  * Update: Added resent confirmation message
529
  * Fix: Duplicate contacts via Rainmaker form
530
  * Fix: Parse error: syntax error, unexpected '['
531
  * Fix: New strings will be available for translations on [WordPress](https://translate.wordpress.org/) (Thanks to [@otto42](https://profiles.wordpress.org/otto42/) and [@dd32](https://profiles.wordpress.org/dd32/))
532
 
533
  **4.0.9 (15.03.2019)**
 
534
  * Fix: Post Notification doesn't work with WP 5.0+ and 'Classic Editor'
535
  * Fix: Username is set instead of user's name after Sync WordPress users
536
  * Fix: Welcome Email and Confirmation Email was not working when subscribed via Rainmaker
537
  * Fix: '{{Email}}' keyword is empty in emails
538
 
539
  **4.0.8 (14.03.2019)**
 
540
  * Fix: Multiple post notifications issue
541
  * Fix: "500 internal server error" while using Rainmaker Form
542
  * Fix: Post notifications are not being sent while republishing older posts
@@ -544,6 +594,7 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
544
  * Update: POT file
545
 
546
  **4.0.7 (13.03.2019)**
 
547
  * Fix: Parse error: syntax error, unexpected T_FUNCTION in older version of PHP
548
  * Fix: Cron URL set empty
549
  * Fix: Post notifications not being sent for the first time post publish in WP 5.0+
@@ -551,21 +602,25 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
551
  * Update: Show notice if WordPress Cron is disable.
552
 
553
  **4.0.6 (12.03.2019)**
 
554
  * Enhancement: Now, queued emails will be processed on every 15 minutes
555
  * Fix: Parse error: syntax error, unexpected T_FUNCTION, expecting ')'
556
  * Fix: Parse error: syntax error, unexpected '[', expecting ')'
557
  * Update: POT file
558
 
559
  **4.0.5 (11.03.2019)**
 
560
  * Update: Enable admin email notification after campaign sent
561
  * Fix: Migration of old Email Subscriber's widgets
562
  * Fix: Could not create, edit list
563
 
564
  **4.0.4 (07.03.2019)**
 
565
  * Fix: 'es_subbox' function not working
566
  * Fix: Warning: Cannot modify header information
567
 
568
  **4.0.3 (06.03.2019)**
 
569
  * New: Able to process queued emails manually
570
  * Update: Added list wise status for contact on Audience dashboard
571
  * Update: Added status based filtering for contacts
@@ -574,6 +629,7 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
574
  * Fix: Incorrect cron url issue when migrated from other domain
575
 
576
  **4.0.2 (04.03.2019)**
 
577
  * Update: Added sync WordPress users functionality
578
  * Update: Added status(Subscribed/ Unsubscribed ) column in Audience dashboard
579
  * Fix: Short description Missing in Widget
@@ -584,6 +640,7 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
584
  * Update: POT file
585
 
586
  **4.0.1 (02.03.2019)**
 
587
  * Fix: Widget sidebar is broken due to Email Subscribers Widget
588
  * Fix: GDPR consent checkbox is missing
589
  * Fix: PHP HTML Mail/ Plain Text email option missing
@@ -593,6 +650,7 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
593
  * Fix: Accentuated letters and special characters are not working in post categories.
594
 
595
  **4.0 (01.03.2019)**
 
596
  * New: [Revamped the plugin](https://www.icegram.com/email-subscribers-plugin-redesign/) - Changes in UI and terminology
597
  * New: Added domain blocking to prevent spam attacks
598
  * Update: POT file
5
  Tags: subscription, newsletter, email marketing, post notification, email newsletter form, email signup, email widget, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation, welcome email, contacts
6
  Requires at least: 3.9
7
  Tested up to: 5.3.2
8
+ Stable tag: 4.3.10
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses
11
 
299
 
300
  == Changelog ==
301
 
302
+ **4.3.10 (16.01.2020)**
303
+
304
+ * Fix: Invalid email adding issue from Rainmaker
305
+
306
  **4.3.9 (08.01.2020)**
307
+
308
  * Update: Added compatibility with Outlook mailer of WP Mail SMTP plugin. (Thanks to [@kinderkeuken](https://profiles.wordpress.org/kinderkeuken/) for help us debugging)
309
  * Fix: Duplicate email import issue.
310
 
311
  **4.3.8 (25.12.2019)**
312
+
313
  * Fix: Include Javascript issue with localised WordPress
314
  * Fix: Duplicate entries of contacts
315
 
318
  * Fix: Multiple emails to contacts
319
 
320
  **4.3.6 (12.12.2019)**
321
+
322
  * Update: Improve on boarding
323
  * Fix: Count shows zero (0) even if contacts available in list
324
  * Fix: File with ".CSV" (uppercase) extension was not working with import contacts.
325
  * Fix: Incorrect unsubscribed contacts count
326
 
327
  **4.3.5.1 (07.12.2019)**
328
+
329
  * Update: Improved edit contact
330
  * Fix: Contacts removed from the list when new subscriber subscribed to the list
331
  * Fix: WordPress contact sync issue
332
 
333
  **4.3.5 (04.12.2019)**
334
+
335
  * New: Added setting to set cron interval
336
  * New: Added setting to set maximum emails to send on every cron request
337
  * Fix: Illegal string offset ‘es_registered’ warning
338
 
339
  **4.3.4.1 (29.11.2019)**
340
+
341
  * Fix: Delete Campaigns Permanently issue
342
  * Fix: Security issues
343
  * Update: Considered HTTP_X_REAL_IP while getting user IP address
344
 
345
  **4.3.4 (28.11.2019)**
346
+
347
  * Update: Delete Campaigns Permanently which are already deleted before
348
  * Fix: Import issue
349
  * Fix: Multiple email sending issue
350
 
351
  **4.3.3 (25.11.2019)**
352
+
353
  * Fix: Cron Lock issue
354
  * Fix: Honeypot issue with caching plugin
355
 
356
  **4.3.2 (20.11.2019)**
357
+
358
  * New: Added basic reporting like total subscribed, unsubscribed, open in last 60 days in audience dashboard
359
  * New: Added Pre header in broadcast
360
  * Update: Clear all cron on deactivation
364
  * Fix: Unsubscribe link issue
365
 
366
  **4.3.1 (13.11.2019)**
367
+
368
  * New: Delete Form Permanently
369
  * New: Delete List Permanently
370
  * Update: Restrict multiple email sending
375
  * Fix: Fatal error
376
 
377
  **4.3.0 (06.11.2019)**
378
+
379
  * Fix: Test email sending issue
380
  * Fix: New Broadcast issue
381
  * Fix: Import contacts issue
383
  * Update: .POT File
384
 
385
  **4.2.4 (23.10.2019)**
386
+
387
  * Update: Improve Create Broadcast UI
388
  * Fix: Unable to remove label for Email field in Subscription Form
389
  * Fix: Validate Post Notification data
390
 
391
  **4.2.3 (17.10.2019)**
392
+
393
  * Update: Now, only administrator can access Email Subscribers menus.
394
  * Fix: Email open tracking
395
  * Fix: Vulnerability while exporting contacts
397
  * Fix: Check permission before saving settings
398
 
399
  **4.2.2 (15.10.2019)**
400
+
401
  * New: Added configuration option for label & placeholder for subscription form
402
  * Update: Ask subscribers for confirmation before unsubscription
403
  * Fix: Unsubscription issue
404
 
405
  **4.2.1 (10.10.2019)**
406
+
407
  * Update: Added per page screen option for Contacts, Forms, Lists & Campaigns
408
 
409
  **4.2.0 (01.10.2019)**
410
+
411
  * New: [Pepipost](https://pepipost.com/?utm_source=icegram&utm_medium=es_inapp&utm_campaign=pepipost) api support for email sending
412
 
413
  **4.1.15 (12.09.2019)**
414
+
415
  * New: Stop email sending if hourly email sending limit exceeded.
416
  * Update: Added option to customize message after form submission (Email Subscribers > Settings Menu)
417
  * Fixed: Import contacts issue
418
 
419
  **4.1.14 (28.08.2019)**
420
+
421
  * New: Import First Name & Last Name
422
  * Update: Added "Send Welcome email" option to send out Welcome Email.
423
  * Fix: Multiple Welcome & Admin email notification on clicking confirmation link multiple times
424
 
425
  **4.1.13 (20.08.2019)**
426
+
427
  * New: Added option to select "All Categories" in post notifications.
428
  * New: Send "Welcome Email" to contact which are being added from Audience dashboard
429
  * Fix: All Post Notifications were sent for the post with no category selected
430
  * Fix: Typo
431
 
432
  **4.1.12 (07.08.2019)**
433
+
434
  * Fix: Set post categories correctly after migration
435
  * Fix: Get all lists from email list & notification tables
436
 
437
  **4.1.11 (02.08.2019)**
438
+
439
  * Fix: Send multiple email notification issue
440
 
441
  **4.1.10 (31.07.2019)**
442
+
443
  * Update: Added viewed count on reports page
444
  * Fix: Shortcodes were not working in email templates
445
  * Fix: Viewed status was not getting updated
446
  * Fix: Migration issues in reports
447
 
448
  **4.1.9 (25.07.2019)**
449
+
450
  * Update: Admin notification will be sent out only after contacts confirm their subscription
451
  * Update: Show Post Notifications categories in campaigns view
452
  * Fix: Sort contacts by name
453
  * Fix: Email Notification formatting issue
454
 
455
  **4.1.8 (16.07.2019)**
456
+
457
  * New: Now, admin can add/ edit First Name & Last Name of subscribers.
458
  * Fix: Fixed Vulnerabilities (Thanks Tin Duong of Fortinet's FortiGuard Labs, WordPress Plugin Review Team & Ihor Voschyk for reporting)
459
 
460
  **4.1.7 (15.07.2019)**
461
+
462
  * Update: Now, able to sort reports by Subject, Status, Start Date, End Date & Total Contacts
463
  * Update: Now, able to sort forms by Name & Created date
464
  * Update: Now, email template will pick up the latest content while email sending
467
  * Fix: Fixed Vulnerability
468
 
469
  **4.1.6 (01.07.2019)**
470
+
471
  * Update: Added sorting for name field in Audience tab
472
  * Fix: Warning: Illegal string offset 'es_registered'
473
  * Fix: Set list name blank in campaign list page
474
  * Fix: Contacts sort by email was not working.
475
 
476
  **4.1.5 (20.06.2019)**
477
+
478
  * Update: Added "Opt-In Type" column in exported contacts lists
479
  * Update: Allow to send broadcast only if contacts are available in list
480
  * Fix: "Select the list" error
481
 
482
  **4.1.4 (13.06.2019)**
483
+
484
  * New: Added First Name, Last Name in exported csv file
485
  * New: Added {{FIRSTNAME}}, {{LASTNAME}} keyword
486
  * Update: Improve subscription form layout.
487
 
488
  **4.1.3 (06.06.2019)**
489
+
490
  * New: Export contacts by list
491
 
492
  **4.1.2.2 (31.05.2019)**
493
+
494
  * Fix: Fatal error: Call to undefined function get_plugins()
495
 
496
  **4.1.2.1 (30.05.2019)**
497
+
498
  * Fix: Unable to use sync functionality
499
 
500
  **4.1.2 (29.05.2019)**
501
+
502
  * New: Added support to export "Unconfirmed" contacts.
503
 
504
  **4.1.1 (21.05.2019)**
505
+
506
  * Fix: "Oops.. Unexpected error occurred" while subscribing
507
  * Fix: Typo in "Campaigns > Edit Post Notification" title
508
  * Fix: Duplicate lists while syncing WordPress users
509
 
510
  **4.1 (14.05.2019)**
511
+
512
  * New: Now, able to change the label of "Subscribe" button
513
 
514
  **4.0.18 (07.05.2019)**
515
+
516
  * New : Added a feature to duplicate any template
517
  * New : Added support to re run database migration from ES 3.5.18
518
  * Fix : Display "0" above form
519
  * Fix : Migration issue
520
 
521
  **4.0.17 (03.05.2019)**
522
+
523
  * New : New keywords added : {{TOTAL-CONTACTS}} in form description
524
  * Fix : Post/page editor issue with RTL sites
525
 
526
  **4.0.16 (23.04.2019)**
527
+
528
  * New : New keywords added : {{TOTAL-CONTACTS}} , {{SITEURL}}, {{SITENAME}}
529
  * New : Added option to enable/ disable WordPress Cron for Email Subscribers
530
  * New : Added option to enable/ disable email open tracking
532
  * Fix : Incorrect viewed and sent dates in report details
533
 
534
  **4.0.15 (17.04.2019)**
535
+
536
  * Fix: Error with Gutenberg editor
537
  * Fix: Media Upload Error
538
  * Fix: WordPress Media Library grid issue
539
  * Fix: Database error
540
 
541
  **4.0.14.1 (16.04.2019)**
542
+
543
  * Fix: CSS issue
544
 
545
  **4.0.14 (15.04.2019)**
546
+
547
  * Fix : Added plain text email content for html email
548
  * Fix : Email confirmation fails if address contains ‘+’
549
  * Fix : Migration issue
550
  * Update: POT file
551
 
552
  **4.0.13 (05.04.2019)**
553
+
554
  * Fix : Plain text email does not decode HTML entities
555
  * Fix : Not able to select category with special charterers in post notification
556
  * Fix : Not able to send email using Amazon SES
559
  * Update: POT file
560
 
561
  **4.0.12 (01.04.2019)**
562
+
563
  * Fix : Parse error: syntax error, unexpected T_FUNCTION
564
  * Update: Remove old css
565
  * Update: POT file
566
 
567
  **4.0.11 (26.03.2019)**
568
+
569
  * New : Added "Add to List" option to the bulk actions of contacts
570
  * New : Link contacts from list view
571
  * Update: Additional security check while opt-in and unsubscription
572
  * Fix : PHP Fatal error: Cannot redeclare temp_filter_category()
573
 
574
  **4.0.10 (20.03.2019)**
575
+
576
  * Update: Added resent confirmation message
577
  * Fix: Duplicate contacts via Rainmaker form
578
  * Fix: Parse error: syntax error, unexpected '['
579
  * Fix: New strings will be available for translations on [WordPress](https://translate.wordpress.org/) (Thanks to [@otto42](https://profiles.wordpress.org/otto42/) and [@dd32](https://profiles.wordpress.org/dd32/))
580
 
581
  **4.0.9 (15.03.2019)**
582
+
583
  * Fix: Post Notification doesn't work with WP 5.0+ and 'Classic Editor'
584
  * Fix: Username is set instead of user's name after Sync WordPress users
585
  * Fix: Welcome Email and Confirmation Email was not working when subscribed via Rainmaker
586
  * Fix: '{{Email}}' keyword is empty in emails
587
 
588
  **4.0.8 (14.03.2019)**
589
+
590
  * Fix: Multiple post notifications issue
591
  * Fix: "500 internal server error" while using Rainmaker Form
592
  * Fix: Post notifications are not being sent while republishing older posts
594
  * Update: POT file
595
 
596
  **4.0.7 (13.03.2019)**
597
+
598
  * Fix: Parse error: syntax error, unexpected T_FUNCTION in older version of PHP
599
  * Fix: Cron URL set empty
600
  * Fix: Post notifications not being sent for the first time post publish in WP 5.0+
602
  * Update: Show notice if WordPress Cron is disable.
603
 
604
  **4.0.6 (12.03.2019)**
605
+
606
  * Enhancement: Now, queued emails will be processed on every 15 minutes
607
  * Fix: Parse error: syntax error, unexpected T_FUNCTION, expecting ')'
608
  * Fix: Parse error: syntax error, unexpected '[', expecting ')'
609
  * Update: POT file
610
 
611
  **4.0.5 (11.03.2019)**
612
+
613
  * Update: Enable admin email notification after campaign sent
614
  * Fix: Migration of old Email Subscriber's widgets
615
  * Fix: Could not create, edit list
616
 
617
  **4.0.4 (07.03.2019)**
618
+
619
  * Fix: 'es_subbox' function not working
620
  * Fix: Warning: Cannot modify header information
621
 
622
  **4.0.3 (06.03.2019)**
623
+
624
  * New: Able to process queued emails manually
625
  * Update: Added list wise status for contact on Audience dashboard
626
  * Update: Added status based filtering for contacts
629
  * Fix: Incorrect cron url issue when migrated from other domain
630
 
631
  **4.0.2 (04.03.2019)**
632
+
633
  * Update: Added sync WordPress users functionality
634
  * Update: Added status(Subscribed/ Unsubscribed ) column in Audience dashboard
635
  * Fix: Short description Missing in Widget
640
  * Update: POT file
641
 
642
  **4.0.1 (02.03.2019)**
643
+
644
  * Fix: Widget sidebar is broken due to Email Subscribers Widget
645
  * Fix: GDPR consent checkbox is missing
646
  * Fix: PHP HTML Mail/ Plain Text email option missing
650
  * Fix: Accentuated letters and special characters are not working in post categories.
651
 
652
  **4.0 (01.03.2019)**
653
+
654
  * New: [Revamped the plugin](https://www.icegram.com/email-subscribers-plugin-redesign/) - Changes in UI and terminology
655
  * New: Added domain blocking to prevent spam attacks
656
  * Update: POT file