Email Subscribers & Newsletters - Version 4.8.5

Version Description

  • Update: Support for Amazon SES batch email API [PRO]
  • Fix: PHP warning while saving contact through admin side

=

Download this release

Release Info

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

Code changes from version 4.8.4 to 4.8.5

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.8.4
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
@@ -187,7 +187,7 @@ if ( 'premium' === $ig_es_plan ) {
187
  /* ***************************** Initial Compatibility Work (End) ******************* */
188
 
189
  if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
190
- define( 'ES_PLUGIN_VERSION', '4.8.4' );
191
  }
192
 
193
  // Plugin Folder Path.
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.8.5
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
187
  /* ***************************** Initial Compatibility Work (End) ******************* */
188
 
189
  if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
190
+ define( 'ES_PLUGIN_VERSION', '4.8.5' );
191
  }
192
 
193
  // Plugin Folder Path.
lite/includes/classes/class-es-mailer.php CHANGED
@@ -649,11 +649,14 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
649
  }
650
  }
651
 
652
- $total_emails_to_send = count( $emails );
 
 
 
653
 
654
  // In case mailser supporting batch APIs, we are setting API credentials, sender data before running the email loop
655
  // For normal mailers, we are doing this inside the loop
656
- if ( $total_emails_to_send > 1 && $this->mailer->support_batch_sending ) {
657
 
658
  $mailer_data_set = $this->mailer->set_mailer_data();
659
 
@@ -755,7 +758,7 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
755
  'guid' => ig_es_get_data( $merge_tags, 'hash', '' ),
756
  );
757
 
758
- if ( $total_emails_to_send > 1 && $this->mailer->support_batch_sending ) {
759
 
760
  if ( ! $this->mailer->is_batch_limit_reached() ) {
761
  if ( 'single' === $this->mailer->batch_sending_mode ) {
@@ -766,7 +769,7 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
766
  }
767
  }
768
 
769
- if ( ( $email_counter + 1 ) >= $total_emails_to_send || $this->mailer->is_batch_limit_reached() ) {
770
  $contact_ids = array_column( $this->mailer->batch_data, 'contact_id' );
771
  if ( ! empty( $contact_ids ) ) {
772
  do_action( 'ig_es_before_message_send', $contact_ids, $campaign_id, $message_id );
@@ -852,7 +855,7 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
852
  }
853
  }
854
 
855
- if ( $total_emails_to_send > 1 && $this->mailer->support_batch_sending ) {
856
  $this->mailer->clear_email_data();
857
  }
858
 
649
  }
650
  }
651
 
652
+ $total_recipients = count( $emails );
653
+
654
+ $can_use_batch_api = $total_recipients > 1 && $this->mailer->support_batch_sending;
655
+ $can_use_batch_api = apply_filters( 'ig_es_can_use_batch_api_' . $this->mailer->slug, $can_use_batch_api, $total_recipients, $sender_data );
656
 
657
  // In case mailser supporting batch APIs, we are setting API credentials, sender data before running the email loop
658
  // For normal mailers, we are doing this inside the loop
659
+ if ( $can_use_batch_api ) {
660
 
661
  $mailer_data_set = $this->mailer->set_mailer_data();
662
 
758
  'guid' => ig_es_get_data( $merge_tags, 'hash', '' ),
759
  );
760
 
761
+ if ( $can_use_batch_api ) {
762
 
763
  if ( ! $this->mailer->is_batch_limit_reached() ) {
764
  if ( 'single' === $this->mailer->batch_sending_mode ) {
769
  }
770
  }
771
 
772
+ if ( ( $email_counter + 1 ) >= $total_recipients || $this->mailer->is_batch_limit_reached() ) {
773
  $contact_ids = array_column( $this->mailer->batch_data, 'contact_id' );
774
  if ( ! empty( $contact_ids ) ) {
775
  do_action( 'ig_es_before_message_send', $contact_ids, $campaign_id, $message_id );
855
  }
856
  }
857
 
858
+ if ( $can_use_batch_api ) {
859
  $this->mailer->clear_email_data();
860
  }
861
 
lite/includes/es-core-functions.php CHANGED
@@ -830,6 +830,7 @@ if ( ! function_exists( 'ig_es_allowed_html_tags_in_esc' ) ) {
830
  'textarea' => array(
831
  'autocomplete' => true,
832
  'required' => 'required',
 
833
  ),
834
  'style' => array(),
835
  'link' => array(
830
  'textarea' => array(
831
  'autocomplete' => true,
832
  'required' => 'required',
833
+ 'placeholder' => true,
834
  ),
835
  'style' => array(),
836
  'link' => array(
lite/includes/mailers/class-es-pepipost-mailer.php CHANGED
@@ -10,6 +10,23 @@ if ( ! class_exists( 'ES_Pepipost_Mailer' ) ) {
10
  * @since 4.3.2 Modified response
11
  */
12
  class ES_Pepipost_Mailer extends ES_Base_Mailer {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  /**
14
  * Pepipost API Url
15
  *
10
  * @since 4.3.2 Modified response
11
  */
12
  class ES_Pepipost_Mailer extends ES_Base_Mailer {
13
+
14
+ /**
15
+ * Mailer name
16
+ *
17
+ * @since 4.8.5
18
+ * @var
19
+ */
20
+ public $name = 'Pepipost';
21
+
22
+ /**
23
+ * Mailer Slug
24
+ *
25
+ * @since 4.8.5
26
+ * @var
27
+ */
28
+ public $slug = 'pepipost';
29
+
30
  /**
31
  * Pepipost API Url
32
  *
lite/includes/mailers/class-es-phpmail-mailer.php CHANGED
@@ -9,6 +9,23 @@ if ( ! class_exists( 'ES_Phpmail_Mailer' ) ) {
9
  * @since 4.3.2
10
  */
11
  class ES_Phpmail_Mailer extends ES_Base_Mailer {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  /**
13
  * ES_Phpmail_Mailer constructor.
14
  *
9
  * @since 4.3.2
10
  */
11
  class ES_Phpmail_Mailer extends ES_Base_Mailer {
12
+
13
+ /**
14
+ * Mailer name
15
+ *
16
+ * @since 4.8.5
17
+ * @var
18
+ */
19
+ public $name = 'PHP mail';
20
+
21
+ /**
22
+ * Mailer Slug
23
+ *
24
+ * @since 4.8.5
25
+ * @var
26
+ */
27
+ public $slug = 'php_mail';
28
+
29
  /**
30
  * ES_Phpmail_Mailer constructor.
31
  *
lite/includes/mailers/class-es-wpmail-mailer.php CHANGED
@@ -5,6 +5,23 @@ if ( ! defined( 'ABSPATH' ) ) {
5
  if ( ! class_exists( 'ES_Wpmail_Mailer' ) ) {
6
 
7
  class ES_Wpmail_Mailer extends ES_Base_Mailer {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  /**
9
  * ES_Wpmail_Mailer constructor.
10
  *
5
  if ( ! class_exists( 'ES_Wpmail_Mailer' ) ) {
6
 
7
  class ES_Wpmail_Mailer extends ES_Base_Mailer {
8
+
9
+ /**
10
+ * Mailer name
11
+ *
12
+ * @since 4.8.5
13
+ * @var
14
+ */
15
+ public $name = 'WP Mail';
16
+
17
+ /**
18
+ * Mailer Slug
19
+ *
20
+ * @since 4.8.5
21
+ * @var
22
+ */
23
+ public $slug = 'wp_mail';
24
+
25
  /**
26
  * ES_Wpmail_Mailer constructor.
27
  *
lite/language.php CHANGED
@@ -311,6 +311,7 @@ __( 'All Statuses', 'email-subscribers' ),
311
  __( 'Upgrade', 'email-subscribers' ),
312
  __( 'All Status', 'email-subscribers' ),
313
  __( 'In Queue', 'email-subscribers' ),
 
314
  __( 'Text', 'email-subscribers' ),
315
  __( 'TextArea', 'email-subscribers' ),
316
  __( 'Dropdown', 'email-subscribers' ),
311
  __( 'Upgrade', 'email-subscribers' ),
312
  __( 'All Status', 'email-subscribers' ),
313
  __( 'In Queue', 'email-subscribers' ),
314
+ __( 'Select field type', 'email-subscribers' ),
315
  __( 'Text', 'email-subscribers' ),
316
  __( 'TextArea', 'email-subscribers' ),
317
  __( 'Dropdown', 'email-subscribers' ),
lite/languages/email-subscribers.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Email Subscribers & Newsletters 4.8.4\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-subscribers\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-10-06T05:25:17+02:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.4.0\n"
15
  "X-Domain: email-subscribers\n"
@@ -461,7 +461,7 @@ msgstr ""
461
  #: lite/admin/class-ig-es-campaign-rules.php:601
462
  #: lite/includes/classes/class-es-admin-settings.php:211
463
  #: lite/includes/classes/class-es-campaign-report.php:189
464
- #: lite/includes/classes/class-es-contacts-table.php:790
465
  #: lite/includes/classes/class-es-export-subscribers.php:339
466
  #: lite/includes/classes/class-es-forms-table.php:396
467
  #: lite/includes/classes/class-es-import-subscribers.php:563
@@ -1347,7 +1347,7 @@ msgstr ""
1347
 
1348
  #: lite/includes/class-es-common.php:1798
1349
  #: lite/includes/classes/class-es-campaigns-table.php:690
1350
- #: lite/includes/classes/class-es-contacts-table.php:1145
1351
  msgid "All Statuses"
1352
  msgstr ""
1353
 
@@ -1369,6 +1369,10 @@ msgstr ""
1369
  msgid "In Queue"
1370
  msgstr ""
1371
 
 
 
 
 
1372
  #: lite/includes/class-es-common.php:2234
1373
  msgid "Text"
1374
  msgstr ""
@@ -1911,18 +1915,18 @@ msgstr ""
1911
 
1912
  #: lite/includes/classes/class-es-campaigns-table.php:438
1913
  #: lite/includes/classes/class-es-campaigns-table.php:465
1914
- #: lite/includes/classes/class-es-contacts-table.php:1038
1915
  #: lite/includes/classes/class-es-forms-table.php:903
1916
  #: lite/includes/classes/class-es-lists-table.php:547
1917
  #: lite/includes/workflows/admin/views/action.php:28
1918
  #: lite/includes/workflows/class-es-workflows-table.php:305
1919
- #: pro/classes/class-es-pro-custom-fields-table.php:561
1920
  msgid "Edit"
1921
  msgstr ""
1922
 
1923
  #: lite/includes/classes/class-es-campaigns-table.php:488
1924
- #: lite/includes/classes/class-es-contacts-table.php:1040
1925
- #: lite/includes/classes/class-es-contacts-table.php:1111
1926
  #: lite/includes/classes/class-es-forms-table.php:905
1927
  #: lite/includes/classes/class-es-forms-table.php:951
1928
  #: lite/includes/classes/class-es-lists-table.php:549
@@ -1933,7 +1937,7 @@ msgstr ""
1933
  #: lite/includes/workflows/admin/views/meta-box-save.php:45
1934
  #: lite/includes/workflows/class-es-workflows-table.php:306
1935
  #: lite/includes/workflows/class-es-workflows-table.php:367
1936
- #: pro/classes/class-es-pro-custom-fields-table.php:563
1937
  msgid "Delete"
1938
  msgstr ""
1939
 
@@ -1946,8 +1950,8 @@ msgid "Type"
1946
  msgstr ""
1947
 
1948
  #: lite/includes/classes/class-es-campaigns-table.php:627
1949
- #: lite/includes/classes/class-es-contacts-table.php:842
1950
- #: lite/includes/classes/class-es-contacts-table.php:1077
1951
  msgid "List(s)"
1952
  msgstr ""
1953
 
@@ -1956,7 +1960,7 @@ msgid "Categories"
1956
  msgstr ""
1957
 
1958
  #: lite/includes/classes/class-es-campaigns-table.php:629
1959
- #: lite/includes/classes/class-es-contacts-table.php:1078
1960
  #: lite/includes/classes/class-es-forms-table.php:923
1961
  #: lite/includes/classes/class-es-lists-table.php:575
1962
  msgid "Created"
@@ -1988,7 +1992,7 @@ msgid "Please select campaign(s) to delete."
1988
  msgstr ""
1989
 
1990
  #: lite/includes/classes/class-es-contacts-table.php:70
1991
- #: lite/includes/classes/class-es-contacts-table.php:1076
1992
  #: lite/includes/workflows/actions/class-es-action-delete-contact.php:30
1993
  #: lite/includes/workflows/actions/class-es-action-update-contact.php:30
1994
  msgid "Contact"
@@ -2041,33 +2045,33 @@ msgstr ""
2041
  msgid "Add New"
2042
  msgstr ""
2043
 
2044
- #: lite/includes/classes/class-es-contacts-table.php:445
2045
  msgid "Contact already exist."
2046
  msgstr ""
2047
 
2048
- #: lite/includes/classes/class-es-contacts-table.php:522
2049
  msgid "Contact added successfully!"
2050
  msgstr ""
2051
 
2052
- #: lite/includes/classes/class-es-contacts-table.php:524
2053
  msgid "Contact updated successfully!"
2054
  msgstr ""
2055
 
2056
- #: lite/includes/classes/class-es-contacts-table.php:531
2057
  msgid "Please enter first name"
2058
  msgstr ""
2059
 
2060
- #: lite/includes/classes/class-es-contacts-table.php:535
2061
  #: lite/includes/classes/class-es-export-subscribers.php:36
2062
  #: lite/includes/classes/class-es-lists-table.php:705
2063
  msgid "Please select list"
2064
  msgstr ""
2065
 
2066
- #: lite/includes/classes/class-es-contacts-table.php:539
2067
  msgid "Please enter valid email address"
2068
  msgstr ""
2069
 
2070
- #: lite/includes/classes/class-es-contacts-table.php:566
2071
  #: lite/includes/classes/class-es-export-subscribers.php:157
2072
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:216
2073
  #: lite/includes/classes/class-es-import-subscribers.php:385
@@ -2076,46 +2080,46 @@ msgstr ""
2076
  msgid "Audience "
2077
  msgstr ""
2078
 
2079
- #: lite/includes/classes/class-es-contacts-table.php:739
2080
  msgid "No list found"
2081
  msgstr ""
2082
 
2083
- #: lite/includes/classes/class-es-contacts-table.php:748
2084
  msgid "First name"
2085
  msgstr ""
2086
 
2087
- #: lite/includes/classes/class-es-contacts-table.php:760
2088
  msgid "Enter first name"
2089
  msgstr ""
2090
 
2091
- #: lite/includes/classes/class-es-contacts-table.php:770
2092
  msgid "Last name"
2093
  msgstr ""
2094
 
2095
- #: lite/includes/classes/class-es-contacts-table.php:781
2096
  msgid "Enter last name"
2097
  msgstr ""
2098
 
2099
- #: lite/includes/classes/class-es-contacts-table.php:802
2100
  #: lite/includes/pro-features.php:980
2101
  #: pro/pro-class-email-subscribers.php:855
2102
  msgid "Enter email"
2103
  msgstr ""
2104
 
2105
- #: lite/includes/classes/class-es-contacts-table.php:812
2106
  msgid "Send welcome email?"
2107
  msgstr ""
2108
 
2109
- #: lite/includes/classes/class-es-contacts-table.php:843
2110
  #: lite/includes/classes/class-es-forms-table.php:464
2111
  msgid "Contacts will be added into selected list(s)"
2112
  msgstr ""
2113
 
2114
- #: lite/includes/classes/class-es-contacts-table.php:860
2115
  msgid "Save Contact"
2116
  msgstr ""
2117
 
2118
- #: lite/includes/classes/class-es-contacts-table.php:860
2119
  #: lite/includes/classes/class-es-forms-table.php:564
2120
  #: lite/includes/classes/class-es-lists-table.php:323
2121
  #: lite/includes/classes/class-es-post-notifications.php:430
@@ -2123,7 +2127,7 @@ msgstr ""
2123
  msgid "Save Changes"
2124
  msgstr ""
2125
 
2126
- #: lite/includes/classes/class-es-contacts-table.php:867
2127
  #: lite/includes/classes/class-es-forms-table.php:568
2128
  #: lite/includes/classes/class-es-lists-table.php:327
2129
  #: lite/includes/classes/class-es-post-notifications.php:433
@@ -2131,72 +2135,72 @@ msgstr ""
2131
  msgid "Cancel"
2132
  msgstr ""
2133
 
2134
- #: lite/includes/classes/class-es-contacts-table.php:883
2135
  msgid "No contacts avaliable."
2136
  msgstr ""
2137
 
2138
- #: lite/includes/classes/class-es-contacts-table.php:1058
2139
  msgid "Resend Confirmation"
2140
  msgstr ""
2141
 
2142
- #: lite/includes/classes/class-es-contacts-table.php:1112
2143
  #: pro/workflows/actions/class-es-action-move-to-list.php:29
2144
  msgid "Move to list"
2145
  msgstr ""
2146
 
2147
- #: lite/includes/classes/class-es-contacts-table.php:1113
2148
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:29
2149
  msgid "Add to list"
2150
  msgstr ""
2151
 
2152
- #: lite/includes/classes/class-es-contacts-table.php:1114
2153
  msgid "Change status"
2154
  msgstr ""
2155
 
2156
- #: lite/includes/classes/class-es-contacts-table.php:1137
2157
  msgid "Search Contacts"
2158
  msgstr ""
2159
 
2160
- #: lite/includes/classes/class-es-contacts-table.php:1154
2161
  msgid "All Lists"
2162
  msgstr ""
2163
 
2164
- #: lite/includes/classes/class-es-contacts-table.php:1269
2165
- #: lite/includes/classes/class-es-contacts-table.php:1332
2166
  msgid "Contact(s) deleted successfully!"
2167
  msgstr ""
2168
 
2169
- #: lite/includes/classes/class-es-contacts-table.php:1282
2170
  msgid "You do not have a permission to resend email confirmation"
2171
  msgstr ""
2172
 
2173
- #: lite/includes/classes/class-es-contacts-table.php:1294
2174
  msgid "Confirmation email sent successfully!"
2175
  msgstr ""
2176
 
2177
- #: lite/includes/classes/class-es-contacts-table.php:1320
2178
  msgid "Please select subscribers to update."
2179
  msgstr ""
2180
 
2181
- #: lite/includes/classes/class-es-contacts-table.php:1343
2182
  msgid "Please select status."
2183
  msgstr ""
2184
 
2185
- #: lite/includes/classes/class-es-contacts-table.php:1357
2186
  msgid "Contact(s) status changed successfully!"
2187
  msgstr ""
2188
 
2189
- #: lite/includes/classes/class-es-contacts-table.php:1368
2190
- #: lite/includes/classes/class-es-contacts-table.php:1389
2191
  #: lite/includes/classes/class-es-post-notifications.php:51
2192
  msgid "Please select list."
2193
  msgstr ""
2194
 
2195
- #: lite/includes/classes/class-es-contacts-table.php:1377
2196
  msgid "Contact(s) moved to list successfully!"
2197
  msgstr ""
2198
 
2199
- #: lite/includes/classes/class-es-contacts-table.php:1398
2200
  msgid "Contact(s) added to list successfully!"
2201
  msgstr ""
2202
 
@@ -2930,7 +2934,7 @@ msgid "If you find this plugin useful, please consider giving us %1$s5 stars rev
2930
  msgstr ""
2931
 
2932
  #. translators: 1. Subscriber email 2. Blog name
2933
- #: lite/includes/classes/class-es-mailer.php:1754
2934
  msgid "Unsubscribe %1$s from %2$s"
2935
  msgstr ""
2936
 
@@ -4641,7 +4645,7 @@ msgid "Custom field added successfully!"
4641
  msgstr ""
4642
 
4643
  #: pro/classes/class-es-pro-custom-fields-table.php:243
4644
- #: pro/classes/class-es-pro-custom-fields-table.php:607
4645
  msgid "Custom field updated successfully!"
4646
  msgstr ""
4647
 
@@ -4658,7 +4662,7 @@ msgid "Please enter options for selected custom field type"
4658
  msgstr ""
4659
 
4660
  #: pro/classes/class-es-pro-custom-fields-table.php:293
4661
- #: pro/classes/class-es-pro-custom-fields-table.php:603
4662
  msgid "You do not have permission to edit custom field"
4663
  msgstr ""
4664
 
@@ -4686,19 +4690,19 @@ msgstr ""
4686
  msgid "Save Custom Field"
4687
  msgstr ""
4688
 
4689
- #: pro/classes/class-es-pro-custom-fields-table.php:618
4690
  msgid "You do not have permission to delete custom field"
4691
  msgstr ""
4692
 
4693
- #: pro/classes/class-es-pro-custom-fields-table.php:628
4694
  msgid "Custom field deleted successfully!"
4695
  msgstr ""
4696
 
4697
- #: pro/classes/class-es-pro-custom-fields-table.php:630
4698
  msgid "Oops...There was an issue while deleting the custom fields"
4699
  msgstr ""
4700
 
4701
- #: pro/classes/class-es-pro-custom-fields-table.php:717
4702
  msgid "No custom fields available."
4703
  msgstr ""
4704
 
@@ -4706,8 +4710,8 @@ msgstr ""
4706
  msgid "Manage Custom Fields"
4707
  msgstr ""
4708
 
4709
- #: pro/classes/class-es-pro-custom-fields.php:246
4710
- #: pro/classes/class-es-pro-custom-fields.php:388
4711
  msgid "Select option"
4712
  msgstr ""
4713
 
@@ -4843,74 +4847,74 @@ msgstr ""
4843
  msgid "Please share the reason"
4844
  msgstr ""
4845
 
4846
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:99
4847
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:319
4848
  msgid "Access Key ID is empty."
4849
  msgstr ""
4850
 
4851
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:109
4852
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:329
4853
  msgid "Secret Access Key is empty."
4854
  msgstr ""
4855
 
4856
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:119
4857
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:339
4858
  msgid "Closest region is not set."
4859
  msgstr ""
4860
 
4861
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:393
4862
  msgid "US East (N. Virginia)"
4863
  msgstr ""
4864
 
4865
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:394
4866
  msgid "US East (Ohio)"
4867
  msgstr ""
4868
 
4869
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:395
4870
  msgid "US West (Oregon)"
4871
  msgstr ""
4872
 
4873
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:396
4874
  msgid "US AWS GovCloud"
4875
  msgstr ""
4876
 
4877
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:397
4878
  msgid "EU (Ireland)"
4879
  msgstr ""
4880
 
4881
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:398
4882
  msgid "EU (London)"
4883
  msgstr ""
4884
 
4885
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:399
4886
  msgid "EU (Frankfurt)"
4887
  msgstr ""
4888
 
4889
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:400
4890
  msgid "Asia Pacific (Mumbai)"
4891
  msgstr ""
4892
 
4893
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:401
4894
  msgid "Asia Pacific (Tokyo)"
4895
  msgstr ""
4896
 
4897
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:402
4898
  msgid "Asia Pacific (Seoul)"
4899
  msgstr ""
4900
 
4901
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:403
4902
  msgid "Asia Pacific (Singapore)"
4903
  msgstr ""
4904
 
4905
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:404
4906
  msgid "Asia Pacific (Sydney)"
4907
  msgstr ""
4908
 
4909
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:405
4910
  msgid "Canada (Central)"
4911
  msgstr ""
4912
 
4913
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:406
4914
  msgid "South America (São Paulo)"
4915
  msgstr ""
4916
 
@@ -4928,34 +4932,34 @@ msgstr ""
4928
  msgid "Encountered an error: %s"
4929
  msgstr ""
4930
 
4931
- #: pro/mailers/class-es-mailgun-mailer.php:149
4932
  msgid "Private API key is empty."
4933
  msgstr ""
4934
 
4935
- #: pro/mailers/class-es-mailgun-mailer.php:159
4936
  msgid "Domain name is empty"
4937
  msgstr ""
4938
 
4939
- #: pro/mailers/class-es-mailgun-mailer.php:169
4940
- #: pro/mailers/class-es-sparkpost-mailer.php:107
4941
  msgid "Region is empty"
4942
  msgstr ""
4943
 
4944
- #: pro/mailers/class-es-mailgun-mailer.php:569
4945
- #: pro/mailers/class-es-postmark-mailer.php:300
4946
- #: pro/mailers/class-es-sendgrid-mailer.php:336
4947
- #: pro/mailers/class-es-sendgrid-mailer.php:676
4948
- #: pro/mailers/class-es-sparkpost-mailer.php:335
4949
  msgid "An unknown error has occured. Please try again later."
4950
  msgstr ""
4951
 
4952
- #: pro/mailers/class-es-postmark-mailer.php:107
4953
  msgid "API token is empty."
4954
  msgstr ""
4955
 
4956
- #: pro/mailers/class-es-sendgrid-mailer.php:107
4957
- #: pro/mailers/class-es-sendgrid-mailer.php:286
4958
- #: pro/mailers/class-es-sparkpost-mailer.php:97
4959
  msgid "API key is empty."
4960
  msgstr ""
4961
 
@@ -5617,27 +5621,27 @@ msgstr ""
5617
  msgid "Displays a link to the wishlist."
5618
  msgstr ""
5619
 
5620
- #: starter/mailers/class-es-smtp-mailer.php:49
5621
  msgid "SMTP Host is empty."
5622
  msgstr ""
5623
 
5624
- #: starter/mailers/class-es-smtp-mailer.php:59
5625
  msgid "SMTP Encryption is not set."
5626
  msgstr ""
5627
 
5628
- #: starter/mailers/class-es-smtp-mailer.php:69
5629
  msgid "SMTP Port is empty."
5630
  msgstr ""
5631
 
5632
- #: starter/mailers/class-es-smtp-mailer.php:79
5633
  msgid "SMTP Authentication is empty."
5634
  msgstr ""
5635
 
5636
- #: starter/mailers/class-es-smtp-mailer.php:89
5637
  msgid "SMTP Username is empty."
5638
  msgstr ""
5639
 
5640
- #: starter/mailers/class-es-smtp-mailer.php:99
5641
  msgid "SMTP Password is empty."
5642
  msgstr ""
5643
 
2
  # This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Email Subscribers & Newsletters 4.8.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-subscribers\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-13T17:20:15+02:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.4.0\n"
15
  "X-Domain: email-subscribers\n"
461
  #: lite/admin/class-ig-es-campaign-rules.php:601
462
  #: lite/includes/classes/class-es-admin-settings.php:211
463
  #: lite/includes/classes/class-es-campaign-report.php:189
464
+ #: lite/includes/classes/class-es-contacts-table.php:793
465
  #: lite/includes/classes/class-es-export-subscribers.php:339
466
  #: lite/includes/classes/class-es-forms-table.php:396
467
  #: lite/includes/classes/class-es-import-subscribers.php:563
1347
 
1348
  #: lite/includes/class-es-common.php:1798
1349
  #: lite/includes/classes/class-es-campaigns-table.php:690
1350
+ #: lite/includes/classes/class-es-contacts-table.php:1148
1351
  msgid "All Statuses"
1352
  msgstr ""
1353
 
1369
  msgid "In Queue"
1370
  msgstr ""
1371
 
1372
+ #: lite/includes/class-es-common.php:2231
1373
+ msgid "Select field type"
1374
+ msgstr ""
1375
+
1376
  #: lite/includes/class-es-common.php:2234
1377
  msgid "Text"
1378
  msgstr ""
1915
 
1916
  #: lite/includes/classes/class-es-campaigns-table.php:438
1917
  #: lite/includes/classes/class-es-campaigns-table.php:465
1918
+ #: lite/includes/classes/class-es-contacts-table.php:1041
1919
  #: lite/includes/classes/class-es-forms-table.php:903
1920
  #: lite/includes/classes/class-es-lists-table.php:547
1921
  #: lite/includes/workflows/admin/views/action.php:28
1922
  #: lite/includes/workflows/class-es-workflows-table.php:305
1923
+ #: pro/classes/class-es-pro-custom-fields-table.php:564
1924
  msgid "Edit"
1925
  msgstr ""
1926
 
1927
  #: lite/includes/classes/class-es-campaigns-table.php:488
1928
+ #: lite/includes/classes/class-es-contacts-table.php:1043
1929
+ #: lite/includes/classes/class-es-contacts-table.php:1114
1930
  #: lite/includes/classes/class-es-forms-table.php:905
1931
  #: lite/includes/classes/class-es-forms-table.php:951
1932
  #: lite/includes/classes/class-es-lists-table.php:549
1937
  #: lite/includes/workflows/admin/views/meta-box-save.php:45
1938
  #: lite/includes/workflows/class-es-workflows-table.php:306
1939
  #: lite/includes/workflows/class-es-workflows-table.php:367
1940
+ #: pro/classes/class-es-pro-custom-fields-table.php:566
1941
  msgid "Delete"
1942
  msgstr ""
1943
 
1950
  msgstr ""
1951
 
1952
  #: lite/includes/classes/class-es-campaigns-table.php:627
1953
+ #: lite/includes/classes/class-es-contacts-table.php:845
1954
+ #: lite/includes/classes/class-es-contacts-table.php:1080
1955
  msgid "List(s)"
1956
  msgstr ""
1957
 
1960
  msgstr ""
1961
 
1962
  #: lite/includes/classes/class-es-campaigns-table.php:629
1963
+ #: lite/includes/classes/class-es-contacts-table.php:1081
1964
  #: lite/includes/classes/class-es-forms-table.php:923
1965
  #: lite/includes/classes/class-es-lists-table.php:575
1966
  msgid "Created"
1992
  msgstr ""
1993
 
1994
  #: lite/includes/classes/class-es-contacts-table.php:70
1995
+ #: lite/includes/classes/class-es-contacts-table.php:1079
1996
  #: lite/includes/workflows/actions/class-es-action-delete-contact.php:30
1997
  #: lite/includes/workflows/actions/class-es-action-update-contact.php:30
1998
  msgid "Contact"
2045
  msgid "Add New"
2046
  msgstr ""
2047
 
2048
+ #: lite/includes/classes/class-es-contacts-table.php:448
2049
  msgid "Contact already exist."
2050
  msgstr ""
2051
 
2052
+ #: lite/includes/classes/class-es-contacts-table.php:525
2053
  msgid "Contact added successfully!"
2054
  msgstr ""
2055
 
2056
+ #: lite/includes/classes/class-es-contacts-table.php:527
2057
  msgid "Contact updated successfully!"
2058
  msgstr ""
2059
 
2060
+ #: lite/includes/classes/class-es-contacts-table.php:534
2061
  msgid "Please enter first name"
2062
  msgstr ""
2063
 
2064
+ #: lite/includes/classes/class-es-contacts-table.php:538
2065
  #: lite/includes/classes/class-es-export-subscribers.php:36
2066
  #: lite/includes/classes/class-es-lists-table.php:705
2067
  msgid "Please select list"
2068
  msgstr ""
2069
 
2070
+ #: lite/includes/classes/class-es-contacts-table.php:542
2071
  msgid "Please enter valid email address"
2072
  msgstr ""
2073
 
2074
+ #: lite/includes/classes/class-es-contacts-table.php:569
2075
  #: lite/includes/classes/class-es-export-subscribers.php:157
2076
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:216
2077
  #: lite/includes/classes/class-es-import-subscribers.php:385
2080
  msgid "Audience "
2081
  msgstr ""
2082
 
2083
+ #: lite/includes/classes/class-es-contacts-table.php:742
2084
  msgid "No list found"
2085
  msgstr ""
2086
 
2087
+ #: lite/includes/classes/class-es-contacts-table.php:751
2088
  msgid "First name"
2089
  msgstr ""
2090
 
2091
+ #: lite/includes/classes/class-es-contacts-table.php:763
2092
  msgid "Enter first name"
2093
  msgstr ""
2094
 
2095
+ #: lite/includes/classes/class-es-contacts-table.php:773
2096
  msgid "Last name"
2097
  msgstr ""
2098
 
2099
+ #: lite/includes/classes/class-es-contacts-table.php:784
2100
  msgid "Enter last name"
2101
  msgstr ""
2102
 
2103
+ #: lite/includes/classes/class-es-contacts-table.php:805
2104
  #: lite/includes/pro-features.php:980
2105
  #: pro/pro-class-email-subscribers.php:855
2106
  msgid "Enter email"
2107
  msgstr ""
2108
 
2109
+ #: lite/includes/classes/class-es-contacts-table.php:815
2110
  msgid "Send welcome email?"
2111
  msgstr ""
2112
 
2113
+ #: lite/includes/classes/class-es-contacts-table.php:846
2114
  #: lite/includes/classes/class-es-forms-table.php:464
2115
  msgid "Contacts will be added into selected list(s)"
2116
  msgstr ""
2117
 
2118
+ #: lite/includes/classes/class-es-contacts-table.php:863
2119
  msgid "Save Contact"
2120
  msgstr ""
2121
 
2122
+ #: lite/includes/classes/class-es-contacts-table.php:863
2123
  #: lite/includes/classes/class-es-forms-table.php:564
2124
  #: lite/includes/classes/class-es-lists-table.php:323
2125
  #: lite/includes/classes/class-es-post-notifications.php:430
2127
  msgid "Save Changes"
2128
  msgstr ""
2129
 
2130
+ #: lite/includes/classes/class-es-contacts-table.php:870
2131
  #: lite/includes/classes/class-es-forms-table.php:568
2132
  #: lite/includes/classes/class-es-lists-table.php:327
2133
  #: lite/includes/classes/class-es-post-notifications.php:433
2135
  msgid "Cancel"
2136
  msgstr ""
2137
 
2138
+ #: lite/includes/classes/class-es-contacts-table.php:886
2139
  msgid "No contacts avaliable."
2140
  msgstr ""
2141
 
2142
+ #: lite/includes/classes/class-es-contacts-table.php:1061
2143
  msgid "Resend Confirmation"
2144
  msgstr ""
2145
 
2146
+ #: lite/includes/classes/class-es-contacts-table.php:1115
2147
  #: pro/workflows/actions/class-es-action-move-to-list.php:29
2148
  msgid "Move to list"
2149
  msgstr ""
2150
 
2151
+ #: lite/includes/classes/class-es-contacts-table.php:1116
2152
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:29
2153
  msgid "Add to list"
2154
  msgstr ""
2155
 
2156
+ #: lite/includes/classes/class-es-contacts-table.php:1117
2157
  msgid "Change status"
2158
  msgstr ""
2159
 
2160
+ #: lite/includes/classes/class-es-contacts-table.php:1140
2161
  msgid "Search Contacts"
2162
  msgstr ""
2163
 
2164
+ #: lite/includes/classes/class-es-contacts-table.php:1157
2165
  msgid "All Lists"
2166
  msgstr ""
2167
 
2168
+ #: lite/includes/classes/class-es-contacts-table.php:1272
2169
+ #: lite/includes/classes/class-es-contacts-table.php:1335
2170
  msgid "Contact(s) deleted successfully!"
2171
  msgstr ""
2172
 
2173
+ #: lite/includes/classes/class-es-contacts-table.php:1285
2174
  msgid "You do not have a permission to resend email confirmation"
2175
  msgstr ""
2176
 
2177
+ #: lite/includes/classes/class-es-contacts-table.php:1297
2178
  msgid "Confirmation email sent successfully!"
2179
  msgstr ""
2180
 
2181
+ #: lite/includes/classes/class-es-contacts-table.php:1323
2182
  msgid "Please select subscribers to update."
2183
  msgstr ""
2184
 
2185
+ #: lite/includes/classes/class-es-contacts-table.php:1346
2186
  msgid "Please select status."
2187
  msgstr ""
2188
 
2189
+ #: lite/includes/classes/class-es-contacts-table.php:1360
2190
  msgid "Contact(s) status changed successfully!"
2191
  msgstr ""
2192
 
2193
+ #: lite/includes/classes/class-es-contacts-table.php:1371
2194
+ #: lite/includes/classes/class-es-contacts-table.php:1392
2195
  #: lite/includes/classes/class-es-post-notifications.php:51
2196
  msgid "Please select list."
2197
  msgstr ""
2198
 
2199
+ #: lite/includes/classes/class-es-contacts-table.php:1380
2200
  msgid "Contact(s) moved to list successfully!"
2201
  msgstr ""
2202
 
2203
+ #: lite/includes/classes/class-es-contacts-table.php:1401
2204
  msgid "Contact(s) added to list successfully!"
2205
  msgstr ""
2206
 
2934
  msgstr ""
2935
 
2936
  #. translators: 1. Subscriber email 2. Blog name
2937
+ #: lite/includes/classes/class-es-mailer.php:1757
2938
  msgid "Unsubscribe %1$s from %2$s"
2939
  msgstr ""
2940
 
4645
  msgstr ""
4646
 
4647
  #: pro/classes/class-es-pro-custom-fields-table.php:243
4648
+ #: pro/classes/class-es-pro-custom-fields-table.php:610
4649
  msgid "Custom field updated successfully!"
4650
  msgstr ""
4651
 
4662
  msgstr ""
4663
 
4664
  #: pro/classes/class-es-pro-custom-fields-table.php:293
4665
+ #: pro/classes/class-es-pro-custom-fields-table.php:606
4666
  msgid "You do not have permission to edit custom field"
4667
  msgstr ""
4668
 
4690
  msgid "Save Custom Field"
4691
  msgstr ""
4692
 
4693
+ #: pro/classes/class-es-pro-custom-fields-table.php:621
4694
  msgid "You do not have permission to delete custom field"
4695
  msgstr ""
4696
 
4697
+ #: pro/classes/class-es-pro-custom-fields-table.php:631
4698
  msgid "Custom field deleted successfully!"
4699
  msgstr ""
4700
 
4701
+ #: pro/classes/class-es-pro-custom-fields-table.php:633
4702
  msgid "Oops...There was an issue while deleting the custom fields"
4703
  msgstr ""
4704
 
4705
+ #: pro/classes/class-es-pro-custom-fields-table.php:720
4706
  msgid "No custom fields available."
4707
  msgstr ""
4708
 
4710
  msgid "Manage Custom Fields"
4711
  msgstr ""
4712
 
4713
+ #: pro/classes/class-es-pro-custom-fields.php:240
4714
+ #: pro/classes/class-es-pro-custom-fields.php:381
4715
  msgid "Select option"
4716
  msgstr ""
4717
 
4847
  msgid "Please share the reason"
4848
  msgstr ""
4849
 
4850
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:117
4851
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:336
4852
  msgid "Access Key ID is empty."
4853
  msgstr ""
4854
 
4855
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:127
4856
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:346
4857
  msgid "Secret Access Key is empty."
4858
  msgstr ""
4859
 
4860
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:137
4861
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:356
4862
  msgid "Closest region is not set."
4863
  msgstr ""
4864
 
4865
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:410
4866
  msgid "US East (N. Virginia)"
4867
  msgstr ""
4868
 
4869
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:411
4870
  msgid "US East (Ohio)"
4871
  msgstr ""
4872
 
4873
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:412
4874
  msgid "US West (Oregon)"
4875
  msgstr ""
4876
 
4877
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:413
4878
  msgid "US AWS GovCloud"
4879
  msgstr ""
4880
 
4881
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:414
4882
  msgid "EU (Ireland)"
4883
  msgstr ""
4884
 
4885
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:415
4886
  msgid "EU (London)"
4887
  msgstr ""
4888
 
4889
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:416
4890
  msgid "EU (Frankfurt)"
4891
  msgstr ""
4892
 
4893
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:417
4894
  msgid "Asia Pacific (Mumbai)"
4895
  msgstr ""
4896
 
4897
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:418
4898
  msgid "Asia Pacific (Tokyo)"
4899
  msgstr ""
4900
 
4901
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:419
4902
  msgid "Asia Pacific (Seoul)"
4903
  msgstr ""
4904
 
4905
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:420
4906
  msgid "Asia Pacific (Singapore)"
4907
  msgstr ""
4908
 
4909
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:421
4910
  msgid "Asia Pacific (Sydney)"
4911
  msgstr ""
4912
 
4913
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:422
4914
  msgid "Canada (Central)"
4915
  msgstr ""
4916
 
4917
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:423
4918
  msgid "South America (São Paulo)"
4919
  msgstr ""
4920
 
4932
  msgid "Encountered an error: %s"
4933
  msgstr ""
4934
 
4935
+ #: pro/mailers/class-es-mailgun-mailer.php:165
4936
  msgid "Private API key is empty."
4937
  msgstr ""
4938
 
4939
+ #: pro/mailers/class-es-mailgun-mailer.php:175
4940
  msgid "Domain name is empty"
4941
  msgstr ""
4942
 
4943
+ #: pro/mailers/class-es-mailgun-mailer.php:185
4944
+ #: pro/mailers/class-es-sparkpost-mailer.php:123
4945
  msgid "Region is empty"
4946
  msgstr ""
4947
 
4948
+ #: pro/mailers/class-es-mailgun-mailer.php:585
4949
+ #: pro/mailers/class-es-postmark-mailer.php:316
4950
+ #: pro/mailers/class-es-sendgrid-mailer.php:352
4951
+ #: pro/mailers/class-es-sendgrid-mailer.php:692
4952
+ #: pro/mailers/class-es-sparkpost-mailer.php:351
4953
  msgid "An unknown error has occured. Please try again later."
4954
  msgstr ""
4955
 
4956
+ #: pro/mailers/class-es-postmark-mailer.php:123
4957
  msgid "API token is empty."
4958
  msgstr ""
4959
 
4960
+ #: pro/mailers/class-es-sendgrid-mailer.php:123
4961
+ #: pro/mailers/class-es-sendgrid-mailer.php:302
4962
+ #: pro/mailers/class-es-sparkpost-mailer.php:113
4963
  msgid "API key is empty."
4964
  msgstr ""
4965
 
5621
  msgid "Displays a link to the wishlist."
5622
  msgstr ""
5623
 
5624
+ #: starter/mailers/class-es-smtp-mailer.php:66
5625
  msgid "SMTP Host is empty."
5626
  msgstr ""
5627
 
5628
+ #: starter/mailers/class-es-smtp-mailer.php:76
5629
  msgid "SMTP Encryption is not set."
5630
  msgstr ""
5631
 
5632
+ #: starter/mailers/class-es-smtp-mailer.php:86
5633
  msgid "SMTP Port is empty."
5634
  msgstr ""
5635
 
5636
+ #: starter/mailers/class-es-smtp-mailer.php:96
5637
  msgid "SMTP Authentication is empty."
5638
  msgstr ""
5639
 
5640
+ #: starter/mailers/class-es-smtp-mailer.php:106
5641
  msgid "SMTP Username is empty."
5642
  msgstr ""
5643
 
5644
+ #: starter/mailers/class-es-smtp-mailer.php:116
5645
  msgid "SMTP Password is empty."
5646
  msgstr ""
5647
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: email marketing, subscription, autoresponder, post notification, welcome e
6
  Requires at least: 3.9
7
  Tested up to: 5.8.1
8
  Requires PHP: 5.6
9
- Stable tag: 4.8.4
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
@@ -310,15 +310,18 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
310
 
311
  == Upgrade Notice ==
312
 
313
- = 4.8.4 =
314
 
315
- * New: Custom fields support for contacts **[PRO]**
316
- * New: Add custom fields in subscription forms **[PRO]**
317
- * New: Map custom fields while importing contacts **[PRO]**
318
- * Fix: Fixed video thumbnail issue with Jetpack plugin
319
 
320
  == Changelog ==
321
 
 
 
 
 
 
322
  **4.8.4 (07.10.2021)**
323
 
324
  * New: Custom fields support for contacts **[PRO]**
6
  Requires at least: 3.9
7
  Tested up to: 5.8.1
8
  Requires PHP: 5.6
9
+ Stable tag: 4.8.5
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
310
 
311
  == Upgrade Notice ==
312
 
313
+ = 4.8.5 =
314
 
315
+ * Update: Support for Amazon SES batch email API **[PRO]**
316
+ * Fix: PHP warning while saving contact through admin side
 
 
317
 
318
  == Changelog ==
319
 
320
+ **4.8.5 (14.10.2021)**
321
+
322
+ * Update: Support for Amazon SES batch email API **[PRO]**
323
+ * Fix: PHP warning while saving contact through admin side
324
+
325
  **4.8.4 (07.10.2021)**
326
 
327
  * New: Custom fields support for contacts **[PRO]**