Email Subscribers & Newsletters - Version 3.2.6

Version Description

(18.01.2017) =

  • New: WordPress 4.7.1 compatible
  • New: Changed terminologies of admin menus for better accessibility
  • Fix: Sanitize input fields while submitting subscribe form - Thanks to Callibrator Pentester
  • Fix: Made all admin success notices to be dismissible
  • Update: UI improvements
  • Update: Text correction & improvements
  • Update: POT file
Download this release

Release Info

Developer storeapps
Plugin Icon 128x128 Email Subscribers & Newsletters
Version 3.2.6
Comparing to
See all releases

Code changes from version 3.2.5 to 3.2.6

changelog.txt CHANGED
@@ -4,6 +4,16 @@ Author : Icegram
4
  Author URI : http://www.icegram.com/
5
  License : GPLv3
6
 
 
 
 
 
 
 
 
 
 
 
7
  ********************************Version 3.2.5************************************************************
8
 
9
  * New: Added action 'es_message_head' for developers to insert custom CSS into subscribe and unsubscribe message
4
  Author URI : http://www.icegram.com/
5
  License : GPLv3
6
 
7
+ ********************************Version 3.2.6************************************************************
8
+
9
+ * New: WordPress 4.7.1 compatible
10
+ * New: Changed terminologies of admin menus for better accessibility
11
+ * Fix: Sanitize input fields while submitting subscribe form - Thanks to [Callibrator Pentester](http://hackholics.com/)
12
+ * Fix: Made all admin success notices to be dismissible
13
+ * Update: UI improvements
14
+ * Update: Text correction & improvements
15
+ * Update: POT file
16
+
17
  ********************************Version 3.2.5************************************************************
18
 
19
  * New: Added action 'es_message_head' for developers to insert custom CSS into subscribe and unsubscribe message
classes/es-loadwidget.php CHANGED
@@ -16,7 +16,7 @@ class es_cls_widget {
16
  $es = $es . '<div>';
17
  $es = $es . '<form class="es_shortcode_form">';
18
 
19
- if( $es_desc <> "" ) {
20
  $es = $es . '<div class="es_caption">'.$es_desc.'</div>';
21
  }
22
  $es = $es . '<div class="es_msg"><span id="es_msg_pg"></span></div>';
16
  $es = $es . '<div>';
17
  $es = $es . '<form class="es_shortcode_form">';
18
 
19
+ if( $es_desc != "" ) {
20
  $es = $es . '<div class="es_caption">'.$es_desc.'</div>';
21
  }
22
  $es = $es . '<div class="es_msg"><span id="es_msg_pg"></span></div>';
classes/es-register.php CHANGED
@@ -145,23 +145,23 @@ class es_cls_registerhook {
145
  add_submenu_page('email-subscribers', __( 'Compose', ES_TDOMAIN ),
146
  __( 'Compose', ES_TDOMAIN ), $es_roles_mail, 'es-compose', array( 'es_cls_intermediate', 'es_compose' ));
147
 
148
- add_submenu_page('email-subscribers', __( 'Notification', ES_TDOMAIN ),
149
- __( 'Notification', ES_TDOMAIN ), $es_roles_notification, 'es-notification', array( 'es_cls_intermediate', 'es_notification' ));
150
 
151
- add_submenu_page('email-subscribers', __( 'Send Email', ES_TDOMAIN ),
152
- __( 'Send Email', ES_TDOMAIN ), $es_roles_sendmail, 'es-sendemail', array( 'es_cls_intermediate', 'es_sendemail' ));
153
 
154
- add_submenu_page('email-subscribers', __( 'Cron', ES_TDOMAIN ),
155
- __( 'Cron Mail', ES_TDOMAIN ), $es_roles_sendmail, 'es-cron', array( 'es_cls_intermediate', 'es_cron' ));
156
 
157
- add_submenu_page('email-subscribers', __( 'Settings', ES_TDOMAIN ),
158
- __( 'Settings', ES_TDOMAIN ), $es_roles_setting, 'es-settings', array( 'es_cls_intermediate', 'es_settings' ));
159
 
160
- add_submenu_page('email-subscribers', __( 'Roles', ES_TDOMAIN ),
161
- __( 'Roles', ES_TDOMAIN ), 'administrator', 'es-roles', array( 'es_cls_intermediate', 'es_roles' ));
162
 
163
- add_submenu_page('email-subscribers', __( 'Sent Mails', ES_TDOMAIN ),
164
- __( 'Sent Mails', ES_TDOMAIN ), $es_roles_sentmail, 'es-sentmail', array( 'es_cls_intermediate', 'es_sentmail' ));
165
 
166
  add_submenu_page('email-subscribers', __( 'Help & Info', ES_TDOMAIN ),
167
  __( '<span style="color:#f18500;font-weight:bolder;">Help & Info', ES_TDOMAIN ), $es_roles_help, 'es-general-information', array( 'es_cls_intermediate', 'es_information' ));
145
  add_submenu_page('email-subscribers', __( 'Compose', ES_TDOMAIN ),
146
  __( 'Compose', ES_TDOMAIN ), $es_roles_mail, 'es-compose', array( 'es_cls_intermediate', 'es_compose' ));
147
 
148
+ add_submenu_page('email-subscribers', __( 'Post Notifications', ES_TDOMAIN ),
149
+ __( 'Post Notifications', ES_TDOMAIN ), $es_roles_notification, 'es-notification', array( 'es_cls_intermediate', 'es_notification' ));
150
 
151
+ add_submenu_page('email-subscribers', __( 'Newsletters', ES_TDOMAIN ),
152
+ __( 'Newsletters', ES_TDOMAIN ), $es_roles_sendmail, 'es-sendemail', array( 'es_cls_intermediate', 'es_sendemail' ));
153
 
154
+ add_submenu_page('email-subscribers', __( 'Cron Settings', ES_TDOMAIN ),
155
+ __( 'Cron Settings', ES_TDOMAIN ), $es_roles_sendmail, 'es-cron', array( 'es_cls_intermediate', 'es_cron' ));
156
 
157
+ add_submenu_page('email-subscribers', __( 'Email Settings', ES_TDOMAIN ),
158
+ __( 'Email Settings', ES_TDOMAIN ), $es_roles_setting, 'es-settings', array( 'es_cls_intermediate', 'es_settings' ));
159
 
160
+ add_submenu_page('email-subscribers', __( 'User Roles', ES_TDOMAIN ),
161
+ __( 'User Roles', ES_TDOMAIN ), 'administrator', 'es-roles', array( 'es_cls_intermediate', 'es_roles' ));
162
 
163
+ add_submenu_page('email-subscribers', __( 'Reports', ES_TDOMAIN ),
164
+ __( 'Reports', ES_TDOMAIN ), $es_roles_sentmail, 'es-sentmail', array( 'es_cls_intermediate', 'es_sentmail' ));
165
 
166
  add_submenu_page('email-subscribers', __( 'Help & Info', ES_TDOMAIN ),
167
  __( '<span style="color:#f18500;font-weight:bolder;">Help & Info', ES_TDOMAIN ), $es_roles_help, 'es-general-information', array( 'es_cls_intermediate', 'es_information' ));
compose/compose-add.php CHANGED
@@ -58,7 +58,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
58
 
59
  if ($es_error_found == FALSE && strlen($es_success) > 0) {
60
  ?>
61
- <div class="updated fade">
62
  <p><strong>
63
  <?php echo $es_success; ?>
64
  </strong></p>
@@ -69,17 +69,15 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
69
  ?>
70
 
71
  <div class="form-wrap">
72
- <div id="icon-plugins" class="icon32"></div>
73
- <h2><?php echo __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ); ?></h2>
74
- <h3>
75
- <?php echo __( 'Compose Mail', ES_TDOMAIN ); ?>
76
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
77
- </h3>
78
  <form name="es_form" method="post" action="#" onsubmit="return _es_submit()">
79
  <label for="tag-link"><?php echo __( 'Select your Mail Type', ES_TDOMAIN ); ?></label>
80
  <select name="es_email_type" id="es_email_type">
81
- <option value='Static Template' selected="selected"><?php echo __( 'Static Template (For Newsletter Email)', ES_TDOMAIN ); ?></option>
82
- <option value='Dynamic Template'><?php echo __( 'Dynamic Template (For Notification Email)', ES_TDOMAIN ); ?></option>
83
  </select>
84
  <p></p>
85
 
@@ -103,7 +101,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
103
  </div>
104
  <input type="hidden" name="es_form_submit" value="yes"/>
105
  <p class="submit">
106
- <input type="submit" class="button add-new-h2" value="<?php echo __( 'Save', ES_TDOMAIN ); ?>" />
107
  </p>
108
  <?php wp_nonce_field('es_form_add'); ?>
109
  </form>
58
 
59
  if ($es_error_found == FALSE && strlen($es_success) > 0) {
60
  ?>
61
+ <div class="notice notice-success is-dismissible">
62
  <p><strong>
63
  <?php echo $es_success; ?>
64
  </strong></p>
69
  ?>
70
 
71
  <div class="form-wrap">
72
+ <h2>
73
+ <?php echo __( 'Add new Email', ES_TDOMAIN ); ?>
 
 
74
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
75
+ </h2>
76
  <form name="es_form" method="post" action="#" onsubmit="return _es_submit()">
77
  <label for="tag-link"><?php echo __( 'Select your Mail Type', ES_TDOMAIN ); ?></label>
78
  <select name="es_email_type" id="es_email_type">
79
+ <option value='Static Template' selected="selected"><?php echo __( 'Static Template (For Newsletter Emails)', ES_TDOMAIN ); ?></option>
80
+ <option value='Dynamic Template'><?php echo __( 'Dynamic Template (For Post Notification Emails)', ES_TDOMAIN ); ?></option>
81
  </select>
82
  <p></p>
83
 
101
  </div>
102
  <input type="hidden" name="es_form_submit" value="yes"/>
103
  <p class="submit">
104
+ <input type="submit" class="button-primary" value="<?php echo __( 'Save', ES_TDOMAIN ); ?>" />
105
  </p>
106
  <?php wp_nonce_field('es_form_add'); ?>
107
  </form>
compose/compose-edit.php CHANGED
@@ -68,7 +68,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
68
 
69
  if ($es_error_found == FALSE && strlen($es_success) > 0) {
70
  ?>
71
- <div class="updated fade">
72
  <p><strong>
73
  <?php echo $es_success; ?>
74
  </strong></p>
@@ -79,18 +79,16 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
79
  ?>
80
 
81
  <div class="form-wrap">
82
- <div id="icon-plugins" class="icon32"></div>
83
- <h2><?php echo __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ); ?></h2>
84
- <h3>
85
- <?php echo __( 'Compose Mail', ES_TDOMAIN ); ?>
86
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-compose&amp;ac=add"><?php echo __( 'Add New', ES_TDOMAIN ); ?></a>
87
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
88
- </h3>
89
  <form name="es_form" method="post" action="#" onsubmit="return _es_submit()">
90
  <label for="tag-link"><?php echo __( 'Select your Mail Type', ES_TDOMAIN ); ?></label>
91
  <select name="es_email_type" id="es_email_type">
92
- <option value='Static Template' <?php if( $form['es_email_type'] == 'Static Template' ) { echo 'selected="selected"' ; } ?>><?php echo __( 'Static Template (For Newsletter Email)', ES_TDOMAIN ); ?></option>
93
- <option value='Dynamic Template' <?php if( $form['es_email_type'] == 'Dynamic Template' ) { echo 'selected="selected"' ; } ?>><?php echo __( 'Dynamic Template (For Notification Email)', ES_TDOMAIN ); ?></option>
94
  </select>
95
  <p></p>
96
 
@@ -115,7 +113,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
115
  <input type="hidden" name="es_form_submit" value="yes"/>
116
  <input type="hidden" name="es_templ_id" id="es_templ_id" value="<?php echo $form['es_templ_id']; ?>"/>
117
  <p class="submit">
118
- <input type="submit" class="button add-new-h2" value="<?php echo __( 'Save', ES_TDOMAIN ); ?>" />
119
  </p>
120
  <?php wp_nonce_field('es_form_edit'); ?>
121
  </form>
68
 
69
  if ($es_error_found == FALSE && strlen($es_success) > 0) {
70
  ?>
71
+ <div class="notice notice-success is-dismissible">
72
  <p><strong>
73
  <?php echo $es_success; ?>
74
  </strong></p>
79
  ?>
80
 
81
  <div class="form-wrap">
82
+ <h2>
83
+ <?php echo __( 'Edit Email', ES_TDOMAIN ); ?>
 
 
84
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-compose&amp;ac=add"><?php echo __( 'Add New', ES_TDOMAIN ); ?></a>
85
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
86
+ </h2>
87
  <form name="es_form" method="post" action="#" onsubmit="return _es_submit()">
88
  <label for="tag-link"><?php echo __( 'Select your Mail Type', ES_TDOMAIN ); ?></label>
89
  <select name="es_email_type" id="es_email_type">
90
+ <option value='Static Template' <?php if( $form['es_email_type'] == 'Static Template' ) { echo 'selected="selected"' ; } ?>><?php echo __( 'Static Template (For Newsletter Emails)', ES_TDOMAIN ); ?></option>
91
+ <option value='Dynamic Template' <?php if( $form['es_email_type'] == 'Dynamic Template' ) { echo 'selected="selected"' ; } ?>><?php echo __( 'Dynamic Template (For Post Notification Emails)', ES_TDOMAIN ); ?></option>
92
  </select>
93
  <p></p>
94
 
113
  <input type="hidden" name="es_form_submit" value="yes"/>
114
  <input type="hidden" name="es_templ_id" id="es_templ_id" value="<?php echo $form['es_templ_id']; ?>"/>
115
  <p class="submit">
116
+ <input type="submit" class="button-primary" value="<?php echo __( 'Save', ES_TDOMAIN ); ?>" />
117
  </p>
118
  <?php wp_nonce_field('es_form_edit'); ?>
119
  </form>
compose/compose-preview.php CHANGED
@@ -22,12 +22,10 @@ if ($result != '1') {
22
  ?>
23
 
24
  <div class="wrap">
25
- <div id="icon-plugins" class="icon32"></div>
26
- <h2><?php echo __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ); ?></h2>
27
- <h3>
28
  <?php echo __( 'Preview Mail', ES_TDOMAIN ); ?>
29
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
30
- </h3>
31
  <div class="tool-box">
32
  <div style="padding:15px;background-color:#FFFFFF;">
33
  <?php
@@ -38,7 +36,7 @@ if ($result != '1') {
38
  ?>
39
  </div>
40
  <p>
41
- <a class="button add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-compose&ac=edit&did=<?php echo $did; ?>"><?php echo __( 'Edit', ES_TDOMAIN ); ?></a>
42
  </p>
43
  <p class="description"><?php echo ES_OFFICIAL; ?></p>
44
  </div>
22
  ?>
23
 
24
  <div class="wrap">
25
+ <h2 style="margin-bottom:1em;">
 
 
26
  <?php echo __( 'Preview Mail', ES_TDOMAIN ); ?>
27
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
28
+ </h2>
29
  <div class="tool-box">
30
  <div style="padding:15px;background-color:#FFFFFF;">
31
  <?php
36
  ?>
37
  </div>
38
  <p>
39
+ <a class="button-primary" href="<?php echo ES_ADMINURL; ?>?page=es-compose&ac=edit&did=<?php echo $did; ?>"><?php echo __( 'Edit', ES_TDOMAIN ); ?></a>
40
  </p>
41
  <p class="description"><?php echo ES_OFFICIAL; ?></p>
42
  </div>
compose/compose-show.php CHANGED
@@ -48,7 +48,7 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
48
  }
49
 
50
  if ($es_success_msg == TRUE) {
51
- ?><div class="updated fade">
52
  <p><strong>
53
  <?php echo $es_success; ?>
54
  </strong></p>
@@ -59,13 +59,11 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
59
  ?>
60
 
61
  <div class="wrap">
62
- <div id="icon-plugins" class="icon32"></div>
63
- <h2><?php echo __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ); ?></h2>
64
- <h3>
65
- <?php echo __( 'Compose Mail', ES_TDOMAIN ); ?>
66
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-compose&amp;ac=add"><?php echo __( 'Add New', ES_TDOMAIN ); ?></a>
67
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
68
- </h3>
69
  <div class="tool-box">
70
  <?php
71
  $myData = array();
48
  }
49
 
50
  if ($es_success_msg == TRUE) {
51
+ ?><div class="notice notice-success is-dismissible">
52
  <p><strong>
53
  <?php echo $es_success; ?>
54
  </strong></p>
59
  ?>
60
 
61
  <div class="wrap">
62
+ <h2 style="margin-bottom:1em;">
63
+ <?php echo __( 'Compose', ES_TDOMAIN ); ?>
 
 
64
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-compose&amp;ac=add"><?php echo __( 'Add New', ES_TDOMAIN ); ?></a>
65
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
66
+ </h2>
67
  <div class="tool-box">
68
  <?php
69
  $myData = array();
cron/cron-add.php CHANGED
@@ -30,7 +30,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
30
  if ($es_error_found == FALSE) {
31
  update_option('es_cron_mailcount', $es_cron_mailcount );
32
  update_option('es_cron_adminmail', $es_cron_adminmail );
33
- $es_success = __( 'Cron details successfully updated.', ES_TDOMAIN );
34
  }
35
  }
36
 
@@ -60,45 +60,73 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
60
  }
61
  if ($es_error_found == FALSE && strlen($es_success) > 0) {
62
  ?>
63
- <div class="updated fade">
64
  <p><strong><?php echo $es_success; ?></strong></p>
65
  </div>
66
  <?php
67
  }
68
  ?>
69
 
70
- <div class="form-wrap">
71
- <div id="icon-plugins" class="icon32"></div>
72
- <h2><?php echo __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ); ?></h2>
73
- <h3>
74
- <?php echo __( 'Cron Details', ES_TDOMAIN ); ?>
 
 
 
 
75
  <a class="add-new-h2" target="_blank" type="button" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
76
- </h3>
77
  <form name="es_form" method="post" action="#" onsubmit="return _es_submit()">
78
- <label for="tag-link"><?php echo __( 'Cron job URL', ES_TDOMAIN ); ?></label>
79
- <input name="es_cron_url" type="text" id="es_cron_url" value="<?php echo $es_cron_url; ?>" maxlength="225" size="75" readonly />
80
- <p><?php echo __( 'This is your cron job URL. It is a readonly field and you are advised not to modify it.', ES_TDOMAIN ); ?></p>
81
-
82
- <label for="tag-link"><?php echo __( 'Mail Count', ES_TDOMAIN ); ?></label>
83
- <input name="es_cron_mailcount" type="text" id="es_cron_mailcount" value="<?php echo $es_cron_mailcount; ?>" maxlength="3" />
84
- <p><?php echo __( 'Enter number of mails you want to send per hour/trigger (Your web host has limits. We suggest 50 emails per hour to be safe).', ES_TDOMAIN ); ?></p>
85
-
86
- <label for="tag-link"><?php echo __( 'Admin Report', 'email-subscribers' ); ?></label>
87
- <textarea size="100" id="es_cron_adminmail" rows="7" cols="72" name="es_cron_adminmail"><?php echo esc_html(stripslashes($es_cron_adminmail)); ?></textarea>
88
- <p><?php echo __( 'Send above mail to admin whenever cron URL is triggered from your server.<br />(Available Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)', ES_TDOMAIN ); ?></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  <input type="hidden" name="es_form_submit" value="yes"/>
90
  <p class="submit">
91
- <input name="publish" lang="publish" class="button add-new-h2" value="<?php echo __( 'Save', ES_TDOMAIN ); ?>" type="submit" />
92
  </p>
93
  <?php wp_nonce_field('es_form_add'); ?>
94
  </form>
95
  </div>
96
  <div class="tool-box">
97
- <h3><?php echo __( 'How to setup auto emails using CRON Job through the cPanel or Plesk?', ES_TDOMAIN ); ?></h3>
98
  <li><?php echo __( '<a target="_blank" href="http://www.icegram.com/documentation/es-how-to-schedule-cron-emails/">What is Cron?</a>', ES_TDOMAIN ); ?></li>
99
  <li><?php echo __( '<a target="_blank" href="http://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-parallels-plesk/">Setup cron job in Plesk</a>', ES_TDOMAIN ); ?></li>
100
  <li><?php echo __( '<a target="_blank" href="http://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-cpanel/">Setup cron job in cPanal</a>', ES_TDOMAIN ); ?></li>
101
- <li><?php echo __( '<a target="_blank" href="http://www.icegram.com/documentation/es-what-to-do-if-hosting-doesnt-support-cron-jobs/">Hosting doesnt support cron jobs?</a>', ES_TDOMAIN ); ?></li><br>
102
  </div>
103
  <p class="description"><?php echo ES_OFFICIAL; ?></p>
104
  </div>
30
  if ($es_error_found == FALSE) {
31
  update_option('es_cron_mailcount', $es_cron_mailcount );
32
  update_option('es_cron_adminmail', $es_cron_adminmail );
33
+ $es_success = __( 'Successfully updated.', ES_TDOMAIN );
34
  }
35
  }
36
 
60
  }
61
  if ($es_error_found == FALSE && strlen($es_success) > 0) {
62
  ?>
63
+ <div class="notice notice-success is-dismissible">
64
  <p><strong><?php echo $es_success; ?></strong></p>
65
  </div>
66
  <?php
67
  }
68
  ?>
69
 
70
+ <style>
71
+ .form-table th {
72
+ width: 50%;
73
+ }
74
+ </style>
75
+
76
+ <div class="wrap">
77
+ <h2>
78
+ <?php echo __( 'Cron Settings', ES_TDOMAIN ); ?>
79
  <a class="add-new-h2" target="_blank" type="button" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
80
+ </h2>
81
  <form name="es_form" method="post" action="#" onsubmit="return _es_submit()">
82
+ <table class="form-table">
83
+ <tbody>
84
+ <tr>
85
+ <th scope="row">
86
+ <label for="tag-image"><?php echo __( 'Cron job URL', ES_TDOMAIN ); ?>
87
+ <p class="description"><?php echo __( 'This is your Cron Job URL. It is a readonly field and you are advised not to modify it.', ES_TDOMAIN ); ?></p>
88
+ </label>
89
+ </th>
90
+ <td>
91
+ <input type="text" name="es_cron_url" id="es_cron_url" value="<?php echo $es_cron_url; ?>" size="68" readonly />
92
+ </td>
93
+ </tr>
94
+ <tr>
95
+ <th scope="row">
96
+ <label for="tag-image"><?php echo __( 'Mail Count', ES_TDOMAIN ); ?>
97
+ <p class="description"><?php echo __( 'Number of mails you want to trigger per hour.', ES_TDOMAIN ); ?></p>
98
+ </label>
99
+ </th>
100
+ <td>
101
+ <input type="number" name="es_cron_mailcount" id="es_cron_mailcount" value="<?php echo $es_cron_mailcount; ?>" maxlength="3" />
102
+ <p class="description"><?php echo __( '(Your web host has limits. We suggest 50 emails per hour to be safe)', ES_TDOMAIN ) ?></p>
103
+ </td>
104
+ </tr>
105
+ <tr>
106
+ <th scope="row">
107
+ <label for="tag-image"><?php echo __( 'Admin Report', 'email-subscribers' ); ?>
108
+ <p class="description"><?php echo __( 'Email to admin whenever cron URL is triggered from your server. (Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)', ES_TDOMAIN ); ?></p>
109
+ </label>
110
+ </th>
111
+ <td>
112
+ <textarea size="100" id="es_cron_adminmail" rows="7" cols="72" name="es_cron_adminmail"><?php echo esc_html(stripslashes($es_cron_adminmail)); ?></textarea>
113
+ </td>
114
+ </tr>
115
+ </tbody>
116
+ </table>
117
  <input type="hidden" name="es_form_submit" value="yes"/>
118
  <p class="submit">
119
+ <input type="submit" name="publish" lang="publish" class="button-primary" value="<?php echo __( 'Save', ES_TDOMAIN ); ?>" />
120
  </p>
121
  <?php wp_nonce_field('es_form_add'); ?>
122
  </form>
123
  </div>
124
  <div class="tool-box">
125
+ <h3><?php echo __( 'What is Cron (auto emails) and how to setup Cron Job?', ES_TDOMAIN ); ?></h3>
126
  <li><?php echo __( '<a target="_blank" href="http://www.icegram.com/documentation/es-how-to-schedule-cron-emails/">What is Cron?</a>', ES_TDOMAIN ); ?></li>
127
  <li><?php echo __( '<a target="_blank" href="http://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-parallels-plesk/">Setup cron job in Plesk</a>', ES_TDOMAIN ); ?></li>
128
  <li><?php echo __( '<a target="_blank" href="http://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-cpanel/">Setup cron job in cPanal</a>', ES_TDOMAIN ); ?></li>
129
+ <li><?php echo __( '<a target="_blank" href="http://www.icegram.com/documentation/es-what-to-do-if-hosting-doesnt-support-cron-jobs/">Hosting does not support cron jobs?</a>', ES_TDOMAIN ); ?></li><br>
130
  </div>
131
  <p class="description"><?php echo ES_OFFICIAL; ?></p>
132
  </div>
email-subscribers.php CHANGED
@@ -3,11 +3,11 @@
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: http://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it gets published.
6
- * Version: 3.2.5
7
  * Author: Icegram
8
  * Author URI: http://www.icegram.com/
9
  * Requires at least: 3.4
10
- * Tested up to: 4.7
11
  * Text Domain: email-subscribers
12
  * Domain Path: /languages/
13
  * License: GPLv3
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: http://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it gets published.
6
+ * Version: 3.2.6
7
  * Author: Icegram
8
  * Author URI: http://www.icegram.com/
9
  * Requires at least: 3.4
10
+ * Tested up to: 4.7.1
11
  * Text Domain: email-subscribers
12
  * Domain Path: /languages/
13
  * License: GPLv3
help/help.php CHANGED
@@ -46,22 +46,25 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
46
  <h1><?php echo __( 'Welcome to Email Subscribers!', ES_TDOMAIN ); ?></h1>
47
  <div><?php echo __( 'Thanks for installing and we hope you will enjoy using Email Subscribers.', ES_TDOMAIN ); ?></div>
48
  <div class="wrap">
49
- <table class="form-table">
50
- <tr>
51
- <th scope="row"><?php echo __( 'For more help and tips...', ES_TDOMAIN ); ?></th>
52
- <td>
53
- <form name="klawoo_subscribe" action="#" method="POST" accept-charset="utf-8">
54
- <input class="es-ltr" type="text" name="email" id="email" placeholder="Email" />
55
- <input type="hidden" name="list" value="hN8OkYzujUlKgDgfCTEcIA"/>
56
- <input type="submit" name="submit" id="submit" class="button button-hero" value="Subscribe">
57
- <br/>
58
- <div id="klawoo_response"></div>
59
- </form>
60
- </td>
61
- </tr>
62
- </table>
63
  </div>
64
  </div>
 
 
 
65
 
66
  <script type="text/javascript">
67
  jQuery(function () {
@@ -120,10 +123,10 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
120
  </p>
121
  </li>
122
  <li class="es_faq">
123
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-import-or-export-email-addresses/" target="_blank">' . __( 'How to Import or Export Email Addresses?', ES_TDOMAIN ) . '</a>' ); ?>
124
  </li>
125
  <li class="es_faq">
126
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-general-plugin-settings/" target="_blank">' . __( 'General Plugin Settings', ES_TDOMAIN ) . '</a>' . __( ' (How to modify the existing emails content like Opt-in mail, Welcome mail, Admin mails)', ES_TDOMAIN ) ); ?>
127
  </li>
128
  <li class="es_faq">
129
  <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-change-update-translate-any-texts-from-email-subscribers/" target="_blank">' . __( 'How to change/update/translate any texts from Email Subscribers?', ES_TDOMAIN ) . '</a>' ); ?>
@@ -135,16 +138,16 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
135
  <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-what-are-static-templates-and-dynamic-templates/" target="_blank">' . __( 'What are Static Templates and Dynamic Templates?', ES_TDOMAIN ) . '</a>' ); ?>
136
  </li>
137
  <li class="es_faq">
138
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-compose-and-send-static-newsletter-mails/" target="_blank">' . __( 'How to Compose and Send Static Newsletter Mails?', ES_TDOMAIN ) . '</a>' ); ?>
139
  </li>
140
  <li class="es_faq">
141
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-configure-and-send-notification-emails-to-subscribers-when-new-posts-are-published/" target="_blank">' . __( 'How to Configure and Send notification emails to subscribers when new posts are published?', ES_TDOMAIN ) . '</a>' ); ?>
142
  </li>
143
  <li class="es_faq">
144
  <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-send-a-sample-new-post-notification-email-to-testgroup-myself/" target="_blank">' . __( 'How to Send a sample new post notification email to testgroup/myself?', ES_TDOMAIN ) . '</a>' ); ?>
145
  </li>
146
  <li class="es_faq">
147
- <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-check-sent-emails/" target="_blank">' . __( 'How to check Sent mails?', ES_TDOMAIN ) . '</a>' ); ?>
148
  </li>
149
  <li class="es_faq">
150
  <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-add-update-existing-subscribers-group/" target="_blank">' . __( 'How to Add/Update Existing Subscribers Group?', ES_TDOMAIN ) . '</a>' ); ?>
46
  <h1><?php echo __( 'Welcome to Email Subscribers!', ES_TDOMAIN ); ?></h1>
47
  <div><?php echo __( 'Thanks for installing and we hope you will enjoy using Email Subscribers.', ES_TDOMAIN ); ?></div>
48
  <div class="wrap">
49
+ <table class="form-table">
50
+ <tr>
51
+ <th scope="row"><?php echo __( 'For more help and tips...', ES_TDOMAIN ); ?></th>
52
+ <td>
53
+ <form name="klawoo_subscribe" action="#" method="POST" accept-charset="utf-8">
54
+ <input class="es-ltr" type="text" name="email" id="email" placeholder="Email" />
55
+ <input type="hidden" name="list" value="hN8OkYzujUlKgDgfCTEcIA"/>
56
+ <input type="submit" name="submit" id="submit" class="button button-hero" value="Subscribe">
57
+ <br/>
58
+ <div id="klawoo_response"></div>
59
+ </form>
60
+ </td>
61
+ </tr>
62
+ </table>
63
  </div>
64
  </div>
65
+ <div class="wrap" style="text-align:right;">
66
+ <?php echo sprintf(__( 'Like Email Subscribers? Please consider %s.', ES_TDOMAIN ), '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CPTHCDC382KVA" target="_blank">' . __( 'contributing to us', ES_TDOMAIN ) .'</a>' ); ?>
67
+ </div>
68
 
69
  <script type="text/javascript">
70
  jQuery(function () {
123
  </p>
124
  </li>
125
  <li class="es_faq">
126
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-general-plugin-settings/" target="_blank">' . __( 'General Plugin Settings', ES_TDOMAIN ) . '</a>' . __( ' (How to modify the existing email content like Confirmation email, Welcome email, Admin emails)', ES_TDOMAIN ) ); ?>
127
  </li>
128
  <li class="es_faq">
129
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-import-or-export-email-addresses/" target="_blank">' . __( 'How to Import or Export Email Addresses?', ES_TDOMAIN ) . '</a>' ); ?>
130
  </li>
131
  <li class="es_faq">
132
  <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-change-update-translate-any-texts-from-email-subscribers/" target="_blank">' . __( 'How to change/update/translate any texts from Email Subscribers?', ES_TDOMAIN ) . '</a>' ); ?>
138
  <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-what-are-static-templates-and-dynamic-templates/" target="_blank">' . __( 'What are Static Templates and Dynamic Templates?', ES_TDOMAIN ) . '</a>' ); ?>
139
  </li>
140
  <li class="es_faq">
141
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-compose-and-send-static-newsletter-mails/" target="_blank">' . __( 'How to Compose and Send Newsletter Emails?', ES_TDOMAIN ) . '</a>' ); ?>
142
  </li>
143
  <li class="es_faq">
144
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-configure-and-send-notification-emails-to-subscribers-when-new-posts-are-published/" target="_blank">' . __( 'How to Configure and Send Post Notification emails to subscribers when new posts are published?', ES_TDOMAIN ) . '</a>' ); ?>
145
  </li>
146
  <li class="es_faq">
147
  <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-send-a-sample-new-post-notification-email-to-testgroup-myself/" target="_blank">' . __( 'How to Send a sample new post notification email to testgroup/myself?', ES_TDOMAIN ) . '</a>' ); ?>
148
  </li>
149
  <li class="es_faq">
150
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-check-sent-emails/" target="_blank">' . __( 'How to check Sent emails reports?', ES_TDOMAIN ) . '</a>' ); ?>
151
  </li>
152
  <li class="es_faq">
153
  <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-add-update-existing-subscribers-group/" target="_blank">' . __( 'How to Add/Update Existing Subscribers Group?', ES_TDOMAIN ) . '</a>' ); ?>
job/es-optin.php CHANGED
@@ -14,7 +14,7 @@ if( (isset($_GET['es'])) && ($_GET['es'] == "optin") ) {
14
  <head>
15
  <title><?php echo $blogname; ?></title>
16
  <meta http-equiv="refresh" content="10; url=<?php echo $home_url; ?>" charset="<?php echo esc_attr( get_option( 'blog_charset' ) ); ?>" />
17
- <?php echo do_action( 'es_message_head' ); ?>
18
  </head>
19
  <body>
20
  <div class="es_successfully_subscribed">
14
  <head>
15
  <title><?php echo $blogname; ?></title>
16
  <meta http-equiv="refresh" content="10; url=<?php echo $home_url; ?>" charset="<?php echo esc_attr( get_option( 'blog_charset' ) ); ?>" />
17
+ <?php do_action( 'es_message_head' ); ?>
18
  </head>
19
  <body>
20
  <div class="es_successfully_subscribed">
job/es-unsubscribe.php CHANGED
@@ -14,7 +14,7 @@ if( (isset($_GET['es'])) && ($_GET['es'] == "unsubscribe") ) {
14
  <head>
15
  <title><?php echo $blogname; ?></title>
16
  <meta http-equiv="refresh" content="10; url=<?php echo $home_url; ?>" charset="<?php echo esc_attr( get_option( 'blog_charset' ) ); ?>" />
17
- <?php echo do_action( 'es_message_head' ); ?>
18
  </head>
19
  <body>
20
  <div class="es_successfully_unsubscribed">
14
  <head>
15
  <title><?php echo $blogname; ?></title>
16
  <meta http-equiv="refresh" content="10; url=<?php echo $home_url; ?>" charset="<?php echo esc_attr( get_option( 'blog_charset' ) ); ?>" />
17
+ <?php do_action( 'es_message_head' ); ?>
18
  </head>
19
  <body>
20
  <div class="es_successfully_unsubscribed">
languages/email-subscribers.pot CHANGED
@@ -2,13 +2,13 @@
2
  # This file is distributed under the same license as the Email Subscribers & Newsletters package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Email Subscribers & Newsletters 3.2.5\n"
6
  "Report-Msgid-Bugs-To: http://www.storeapps.org/support/contact-us/\n"
7
- "POT-Creation-Date: 2017-01-05 11:04:36+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: Thu, 05 Jan 2017 16:34:36 +0530\n"
12
  "Last-Translator: Ratnakar Dubey <ratnakar.dubey@storeapps.org>\n"
13
  "Language-Team: StoreApps <support@storeapps.org>\n"
14
 
@@ -57,8 +57,8 @@ msgid "<span style=\"color:#993399;\">Instant Mail</span>"
57
  msgstr ""
58
 
59
  #: classes/es-loadwidget.php:24 classes/es-register.php:499
60
- #: subscribers/view-subscriber-show.php:355
61
- #: subscribers/view-subscriber-show.php:369
62
  msgid "Name"
63
  msgstr ""
64
 
@@ -75,44 +75,43 @@ msgid "Email Subscribers"
75
  msgstr ""
76
 
77
  #: classes/es-register.php:142 classes/es-register.php:143
 
78
  msgid "Subscribers"
79
  msgstr ""
80
 
81
  #: classes/es-register.php:145 classes/es-register.php:146
 
82
  msgid "Compose"
83
  msgstr ""
84
 
85
  #: classes/es-register.php:148 classes/es-register.php:149
86
- #: notification/notification-show.php:53
87
- msgid "Notification"
88
  msgstr ""
89
 
90
  #: classes/es-register.php:151 classes/es-register.php:152
91
- #: sendmail/sendmail.php:95 sendmail/sendmail.php:193
92
- #: sendmail/sendmail.php:195
93
- msgid "Send Email"
94
  msgstr ""
95
 
96
- #: classes/es-register.php:154
97
- msgid "Cron"
98
- msgstr ""
99
-
100
- #: classes/es-register.php:155
101
- msgid "Cron Mail"
102
  msgstr ""
103
 
104
  #: classes/es-register.php:157 classes/es-register.php:158
105
- #: settings/settings-edit.php:198
106
- msgid "Settings"
107
  msgstr ""
108
 
109
  #: classes/es-register.php:160 classes/es-register.php:161
110
- msgid "Roles"
 
111
  msgstr ""
112
 
113
  #: classes/es-register.php:163 classes/es-register.php:164
114
- #: sentmail/sentmail-show.php:97
115
- msgid "Sent Mails"
116
  msgstr ""
117
 
118
  #: classes/es-register.php:166
@@ -423,83 +422,82 @@ msgstr ""
423
  msgid "Template successfully created. "
424
  msgstr ""
425
 
426
- #: compose/compose-add.php:75 compose/compose-edit.php:85
427
- #: compose/compose-show.php:65
428
- msgid "Compose Mail"
429
- msgstr ""
430
-
431
- #: compose/compose-add.php:76 compose/compose-edit.php:87
432
- #: compose/compose-preview.php:29 compose/compose-show.php:67
433
- #: cron/cron-add.php:75 notification/notification-add.php:108
434
- #: notification/notification-edit.php:119
435
- #: notification/notification-show.php:55 roles/roles-add.php:106
436
- #: sendmail/sendmail.php:96 sentmail/deliverreport-show.php:62
437
- #: sentmail/sentmail-preview.php:29 sentmail/sentmail-show.php:98
438
- #: settings/settings-edit.php:199 subscribers/view-subscriber-add.php:116
439
- #: subscribers/view-subscriber-edit.php:115
440
- #: subscribers/view-subscriber-export.php:31
441
- #: subscribers/view-subscriber-import.php:147
442
- #: subscribers/view-subscriber-show.php:247
443
- #: subscribers/view-subscriber-sync.php:94
444
  msgid "Help"
445
  msgstr ""
446
 
447
- #: compose/compose-add.php:79 compose/compose-edit.php:90
448
  msgid "Select your Mail Type"
449
  msgstr ""
450
 
451
- #: compose/compose-add.php:81 compose/compose-edit.php:92
452
- msgid "Static Template (For Newsletter Email)"
453
  msgstr ""
454
 
455
- #: compose/compose-add.php:82 compose/compose-edit.php:93
456
- msgid "Dynamic Template (For Notification Email)"
457
  msgstr ""
458
 
459
- #: compose/compose-add.php:86 compose/compose-edit.php:97
460
  msgid "Enter Mail Subject"
461
  msgstr ""
462
 
463
- #: compose/compose-add.php:88 compose/compose-edit.php:99
464
  msgid "Keyword: ###POSTTITLE###"
465
  msgstr ""
466
 
467
- #: compose/compose-add.php:90 compose/compose-edit.php:101
468
  msgid "Enter Content for your Mail"
469
  msgstr ""
470
 
471
- #: compose/compose-add.php:94 compose/compose-edit.php:105
472
  msgid ""
473
  "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
474
  "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
475
  "###POSTDESC###, ###POSTFULL###"
476
  msgstr ""
477
 
478
- #: compose/compose-add.php:94 compose/compose-edit.php:105
479
  msgid "Available Keywords"
480
  msgstr ""
481
 
482
- #: compose/compose-add.php:98 compose/compose-edit.php:109
483
- #: compose/compose-show.php:79 compose/compose-show.php:87
484
- #: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:87
485
- #: sentmail/sentmail-show.php:111 sentmail/sentmail-show.php:124
486
- #: subscribers/view-subscriber-show.php:356
487
- #: subscribers/view-subscriber-show.php:370
488
  msgid "Status"
489
  msgstr ""
490
 
491
- #: compose/compose-add.php:100 compose/compose-edit.php:111
492
  msgid "Published"
493
  msgstr ""
494
 
495
- #: compose/compose-add.php:102 compose/compose-edit.php:113
496
  msgid "Please select your mail status"
497
  msgstr ""
498
 
499
- #: compose/compose-add.php:106 compose/compose-edit.php:118
500
- #: cron/cron-add.php:91 notification/notification-add.php:247
501
- #: notification/notification-edit.php:287 roles/roles-add.php:202
502
- #: subscribers/view-subscriber-edit.php:192
503
  msgid "Save"
504
  msgstr ""
505
 
@@ -515,19 +513,23 @@ msgstr ""
515
  msgid "Template successfully updated. "
516
  msgstr ""
517
 
518
- #: compose/compose-edit.php:86 compose/compose-show.php:66
519
- #: notification/notification-edit.php:118
520
- #: notification/notification-show.php:54
 
 
 
 
521
  msgid "Add New"
522
  msgstr ""
523
 
524
- #: compose/compose-preview.php:28 sentmail/sentmail-preview.php:28
525
  msgid "Preview Mail"
526
  msgstr ""
527
 
528
- #: compose/compose-preview.php:41 compose/compose-show.php:105
529
- #: notification/notification-show.php:98
530
- #: subscribers/view-subscriber-show.php:400
531
  msgid "Edit"
532
  msgstr ""
533
 
@@ -541,34 +543,34 @@ msgstr ""
541
  msgid "Selected record deleted."
542
  msgstr ""
543
 
544
- #: compose/compose-show.php:78 compose/compose-show.php:86
545
  msgid "Email subject"
546
  msgstr ""
547
 
548
- #: compose/compose-show.php:80 compose/compose-show.php:88
549
- #: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:88
550
- #: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
551
  msgid "Type"
552
  msgstr ""
553
 
554
- #: compose/compose-show.php:81 compose/compose-show.php:89
555
  msgid "Actions"
556
  msgstr ""
557
 
558
- #: compose/compose-show.php:106 notification/notification-show.php:101
559
- #: subscribers/view-subscriber-show.php:279
560
- #: subscribers/view-subscriber-show.php:405
561
  msgid "Delete"
562
  msgstr ""
563
 
564
- #: compose/compose-show.php:107 sentmail/sentmail-show.php:109
565
- #: sentmail/sentmail-show.php:122
566
  msgid "Preview"
567
  msgstr ""
568
 
569
- #: compose/compose-show.php:115 notification/notification-show.php:141
570
- #: sentmail/deliverreport-show.php:115 sentmail/sentmail-show.php:165
571
- #: subscribers/view-subscriber-show.php:428
572
  msgid "No records available."
573
  msgstr ""
574
 
@@ -577,70 +579,68 @@ msgid "Please enter valid mail count."
577
  msgstr ""
578
 
579
  #: cron/cron-add.php:33
580
- msgid "Cron details successfully updated."
581
  msgstr ""
582
 
583
- #: cron/cron-add.php:74
584
- msgid "Cron Details"
585
- msgstr ""
586
-
587
- #: cron/cron-add.php:78
588
  msgid "Cron job URL"
589
  msgstr ""
590
 
591
- #: cron/cron-add.php:80
592
  msgid ""
593
- "This is your cron job URL. It is a readonly field and you are advised not to "
594
  "modify it."
595
  msgstr ""
596
 
597
- #: cron/cron-add.php:82
598
  msgid "Mail Count"
599
  msgstr ""
600
 
601
- #: cron/cron-add.php:84
602
- msgid ""
603
- "Enter number of mails you want to send per hour/trigger (Your web host has "
604
- "limits. We suggest 50 emails per hour to be safe)."
605
  msgstr ""
606
 
607
- #: cron/cron-add.php:86
 
 
 
 
608
  msgid "Admin Report"
609
  msgstr ""
610
 
611
- #: cron/cron-add.php:88
612
  msgid ""
613
- "Send above mail to admin whenever cron URL is triggered from your server."
614
- "<br />(Available Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
615
  msgstr ""
616
 
617
- #: cron/cron-add.php:97
618
- msgid "How to setup auto emails using CRON Job through the cPanel or Plesk?"
619
  msgstr ""
620
 
621
- #: cron/cron-add.php:98
622
  msgid ""
623
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
624
  "schedule-cron-emails/\">What is Cron?</a>"
625
  msgstr ""
626
 
627
- #: cron/cron-add.php:99
628
  msgid ""
629
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
630
  "schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
631
  msgstr ""
632
 
633
- #: cron/cron-add.php:100
634
  msgid ""
635
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
636
  "schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
637
  msgstr ""
638
 
639
- #: cron/cron-add.php:101
640
  msgid ""
641
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-"
642
- "do-if-hosting-doesnt-support-cron-jobs/\">Hosting doesnt support cron jobs?</"
643
- "a>"
644
  msgstr ""
645
 
646
  #: export/export-email-address.php:33 export/export-email-address.php:37
@@ -660,99 +660,107 @@ msgstr ""
660
  msgid "For more help and tips..."
661
  msgstr ""
662
 
663
- #: help/help.php:95
 
 
 
 
 
 
 
 
664
  msgid "Frequently Asked Questions"
665
  msgstr ""
666
 
667
- #: help/help.php:114 help/help.php:123 help/help.php:126 help/help.php:129
668
- #: help/help.php:132 help/help.php:135 help/help.php:138 help/help.php:141
669
- #: help/help.php:144 help/help.php:147 help/help.php:150 help/help.php:153
670
- #: help/help.php:156 help/help.php:159 help/help.php:162 help/help.php:165
671
- #: help/help.php:168 help/help.php:171 help/help.php:174
672
  msgid "%s"
673
  msgstr ""
674
 
675
- #: help/help.php:114
676
  msgid "How to Add Subscription box to website?"
677
  msgstr ""
678
 
679
- #: help/help.php:123
680
- msgid "How to Import or Export Email Addresses?"
681
- msgstr ""
682
-
683
  #: help/help.php:126
684
  msgid "General Plugin Settings"
685
  msgstr ""
686
 
687
  #: help/help.php:126
688
  msgid ""
689
- " (How to modify the existing emails content like Opt-in mail, Welcome mail, "
690
- "Admin mails)"
691
  msgstr ""
692
 
693
  #: help/help.php:129
694
- msgid "How to change/update/translate any texts from Email Subscribers?"
695
  msgstr ""
696
 
697
  #: help/help.php:132
698
- msgid "How to add Unsubscribe link in emails?"
699
  msgstr ""
700
 
701
  #: help/help.php:135
702
- msgid "What are Static Templates and Dynamic Templates?"
703
  msgstr ""
704
 
705
  #: help/help.php:138
706
- msgid "How to Compose and Send Static Newsletter Mails?"
707
  msgstr ""
708
 
709
  #: help/help.php:141
710
- msgid ""
711
- "How to Configure and Send notification emails to subscribers when new posts "
712
- "are published?"
713
  msgstr ""
714
 
715
  #: help/help.php:144
716
- msgid "How to Send a sample new post notification email to testgroup/myself?"
 
 
717
  msgstr ""
718
 
719
  #: help/help.php:147
720
- msgid "How to check Sent mails?"
721
  msgstr ""
722
 
723
  #: help/help.php:150
724
- msgid "How to Add/Update Existing Subscribers Group?"
725
  msgstr ""
726
 
727
  #: help/help.php:153
728
- msgid "Subscribers are not receiving Emails?"
729
  msgstr ""
730
 
731
  #: help/help.php:156
732
- msgid "How to show subscribe form inside a popup?"
733
  msgstr ""
734
 
735
  #: help/help.php:159
736
- msgid "How to use Rainmaker’s form in Email Subscribers?"
737
  msgstr ""
738
 
739
  #: help/help.php:162
740
- msgid "How to Schedule Cron Mails?"
741
  msgstr ""
742
 
743
  #: help/help.php:165
744
- msgid "How to Schedule Cron Emails in cPanel?"
745
  msgstr ""
746
 
747
  #: help/help.php:168
748
- msgid "How to Schedule Cron Emails in Parallels Plesk?"
749
  msgstr ""
750
 
751
  #: help/help.php:171
752
- msgid "What to do if Hosting doesn’t support Cron Jobs?"
753
  msgstr ""
754
 
755
  #: help/help.php:174
 
 
 
 
756
  msgid "Commonly Asked Questions"
757
  msgstr ""
758
 
@@ -788,82 +796,82 @@ msgstr ""
788
  msgid "Notification successfully created. "
789
  msgstr ""
790
 
791
- #: notification/notification-add.php:107
792
  msgid "Add Notification"
793
  msgstr ""
794
 
795
- #: notification/notification-add.php:115
796
  msgid "Select Subscribers Group"
797
  msgstr ""
798
 
799
- #: notification/notification-add.php:119 notification/notification-add.php:143
800
- #: notification/notification-edit.php:130
801
- #: notification/notification-edit.php:163 sendmail/sendmail.php:109
802
  #: sendmail/sendmail.php:136 sendmail/sendmail.php:150
803
- #: subscribers/view-subscriber-add.php:163
804
- #: subscribers/view-subscriber-edit.php:163
805
- #: subscribers/view-subscriber-import.php:191
806
- #: subscribers/view-subscriber-sync.php:120
807
  msgid "Select"
808
  msgstr ""
809
 
810
- #: notification/notification-add.php:137
811
- #: notification/notification-edit.php:157
812
  msgid "Select Notification Mail Subject"
813
  msgstr ""
814
 
815
- #: notification/notification-add.php:138
816
- #: notification/notification-edit.php:158
817
  msgid "(Use compose menu to create new)"
818
  msgstr ""
819
 
820
- #: notification/notification-add.php:162
821
- #: notification/notification-edit.php:185
822
  msgid "Select Post Categories"
823
  msgstr ""
824
 
825
- #: notification/notification-add.php:189
826
- #: notification/notification-edit.php:220
827
  msgid "Check All"
828
  msgstr ""
829
 
830
- #: notification/notification-add.php:190
831
- #: notification/notification-edit.php:221
832
  msgid "Uncheck All"
833
  msgstr ""
834
 
835
- #: notification/notification-add.php:196
836
- #: notification/notification-edit.php:228
837
  msgid "Select your Custom Post Type"
838
  msgstr ""
839
 
840
- #: notification/notification-add.php:197
841
- #: notification/notification-edit.php:229
842
  msgid "(Optional)"
843
  msgstr ""
844
 
845
- #: notification/notification-add.php:226
846
- #: notification/notification-edit.php:263
847
  msgid "No Custom Post Types Available"
848
  msgstr ""
849
 
850
- #: notification/notification-add.php:233
851
- #: notification/notification-edit.php:271
852
  msgid "Select Notification Status"
853
  msgstr ""
854
 
855
- #: notification/notification-add.php:237
856
- #: notification/notification-edit.php:276
857
  msgid "Send mail immediately when new post is published"
858
  msgstr ""
859
 
860
- #: notification/notification-add.php:238
861
- #: notification/notification-edit.php:277
862
  msgid "Add to cron when new post is published and send via cron job"
863
  msgstr ""
864
 
865
- #: notification/notification-add.php:239
866
- #: notification/notification-edit.php:278
867
  msgid "Disable notification"
868
  msgstr ""
869
 
@@ -879,36 +887,36 @@ msgstr ""
879
  msgid "Notification successfully updated. "
880
  msgstr ""
881
 
882
- #: notification/notification-edit.php:117
883
  msgid "Edit Notification"
884
  msgstr ""
885
 
886
- #: notification/notification-edit.php:126
887
- #: subscribers/view-subscriber-show.php:281
888
  msgid "Update Subscribers Group"
889
  msgstr ""
890
 
891
- #: notification/notification-show.php:66 notification/notification-show.php:74
892
  msgid "Mail Subject"
893
  msgstr ""
894
 
895
- #: notification/notification-show.php:67 notification/notification-show.php:75
896
  msgid "Subscribers Group"
897
  msgstr ""
898
 
899
- #: notification/notification-show.php:68 notification/notification-show.php:76
900
  msgid "Categories / Custom Post"
901
  msgstr ""
902
 
903
- #: notification/notification-show.php:69 notification/notification-show.php:77
904
  msgid "Notification Status"
905
  msgstr ""
906
 
907
- #: notification/notification-show.php:128
908
  msgid "Send mail immediately when new post is published."
909
  msgstr ""
910
 
911
- #: notification/notification-show.php:130
912
  msgid "Add to cron and send mail via cron job."
913
  msgstr ""
914
 
@@ -916,58 +924,54 @@ msgstr ""
916
  msgid "Role Updated. "
917
  msgstr ""
918
 
919
- #: roles/roles-add.php:105
920
- msgid "Roles and Capabilities"
921
- msgstr ""
922
-
923
- #: roles/roles-add.php:109
924
  msgid ""
925
  "Select user roles who can access following menus. Only Admin can change this."
926
  msgstr ""
927
 
928
- #: roles/roles-add.php:116
929
  msgid "Subscribers Menu"
930
  msgstr ""
931
 
932
- #: roles/roles-add.php:120 roles/roles-add.php:132 roles/roles-add.php:144
933
- #: roles/roles-add.php:156 roles/roles-add.php:168 roles/roles-add.php:180
934
- #: roles/roles-add.php:192
935
  msgid "Administrator Only"
936
  msgstr ""
937
 
938
- #: roles/roles-add.php:121 roles/roles-add.php:133 roles/roles-add.php:145
939
- #: roles/roles-add.php:157 roles/roles-add.php:169 roles/roles-add.php:181
940
- #: roles/roles-add.php:193
941
  msgid "Administrator/Editor"
942
  msgstr ""
943
 
944
- #: roles/roles-add.php:122 roles/roles-add.php:134 roles/roles-add.php:146
945
- #: roles/roles-add.php:158 roles/roles-add.php:170 roles/roles-add.php:182
946
- #: roles/roles-add.php:194
947
  msgid "Administrator/Editor/Author/Contributor"
948
  msgstr ""
949
 
950
- #: roles/roles-add.php:128
951
  msgid "Compose Menu"
952
  msgstr ""
953
 
954
- #: roles/roles-add.php:140
955
- msgid "Notification Menu"
956
  msgstr ""
957
 
958
- #: roles/roles-add.php:152
959
- msgid "Send Email Menu/Cron Menu"
960
  msgstr ""
961
 
962
- #: roles/roles-add.php:164
963
- msgid "Settings Menu"
964
  msgstr ""
965
 
966
- #: roles/roles-add.php:176
967
- msgid "Sent Mails Menu"
968
  msgstr ""
969
 
970
- #: roles/roles-add.php:188
971
  msgid "Help & Info Menu"
972
  msgstr ""
973
 
@@ -995,6 +999,10 @@ msgstr ""
995
  msgid "Oops.. We are getting some error. mail not sending."
996
  msgstr ""
997
 
 
 
 
 
998
  #: sendmail/sendmail.php:104
999
  msgid "Select Mail Subject from available list"
1000
  msgstr ""
@@ -1030,6 +1038,10 @@ msgid ""
1030
  "strong><br>Click on Help for more information."
1031
  msgstr ""
1032
 
 
 
 
 
1033
  #: sendmail/sendmail.php:198
1034
  msgid "Reset"
1035
  msgstr ""
@@ -1046,39 +1058,39 @@ msgstr ""
1046
  msgid " &gt;&gt; "
1047
  msgstr ""
1048
 
1049
- #: sentmail/deliverreport-show.php:61
1050
  msgid "Delivery Report"
1051
  msgstr ""
1052
 
1053
- #: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:84
1054
- #: subscribers/view-subscriber-export.php:38
1055
- #: subscribers/view-subscriber-export.php:46
1056
- #: subscribers/view-subscriber-show.php:353
1057
- #: subscribers/view-subscriber-show.php:367
1058
  msgid "Sno"
1059
  msgstr ""
1060
 
1061
- #: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:85
1062
  msgid "Email"
1063
  msgstr ""
1064
 
1065
- #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:86
1066
  msgid "Sent Date"
1067
  msgstr ""
1068
 
1069
- #: sentmail/deliverreport-show.php:77 sentmail/deliverreport-show.php:89
1070
  msgid "Viewed Status"
1071
  msgstr ""
1072
 
1073
- #: sentmail/deliverreport-show.php:78 sentmail/deliverreport-show.php:90
1074
  msgid "Viewed Date"
1075
  msgstr ""
1076
 
1077
- #: sentmail/deliverreport-show.php:79 sentmail/deliverreport-show.php:91
1078
  msgid "Database ID"
1079
  msgstr ""
1080
 
1081
- #: sentmail/sentmail-preview.php:43
1082
  msgid "Back"
1083
  msgstr ""
1084
 
@@ -1086,39 +1098,44 @@ msgstr ""
1086
  msgid "Successfully deleted all reports except latest 10."
1087
  msgstr ""
1088
 
1089
- #: sentmail/sentmail-show.php:108 sentmail/sentmail-show.php:121
 
 
 
 
 
1090
  msgid "View Reports"
1091
  msgstr ""
1092
 
1093
- #: sentmail/sentmail-show.php:110 sentmail/sentmail-show.php:123
1094
  msgid "Source"
1095
  msgstr ""
1096
 
1097
- #: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
1098
  msgid "Start Date"
1099
  msgstr ""
1100
 
1101
- #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
1102
  msgid "End Date"
1103
  msgstr ""
1104
 
1105
- #: sentmail/sentmail-show.php:115 sentmail/sentmail-show.php:128
1106
  msgid "Total"
1107
  msgstr ""
1108
 
1109
- #: sentmail/sentmail-show.php:116 sentmail/sentmail-show.php:129
1110
- #: subscribers/view-subscriber-export.php:41
1111
- #: subscribers/view-subscriber-export.php:49
1112
- #: subscribers/view-subscriber-show.php:359
1113
- #: subscribers/view-subscriber-show.php:373
1114
  msgid "Action"
1115
  msgstr ""
1116
 
1117
- #: sentmail/sentmail-show.php:175
1118
  msgid "Optimize Table & Delete Records"
1119
  msgstr ""
1120
 
1121
- #: sentmail/sentmail-show.php:184
1122
  msgid ""
1123
  "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1124
  "button to delete all reports except latest 10."
@@ -1152,265 +1169,271 @@ msgstr ""
1152
  msgid "Oops, unable to update."
1153
  msgstr ""
1154
 
1155
- #: settings/settings-edit.php:206
1156
- msgid "Sender of notifications"
1157
  msgstr ""
1158
 
1159
- #: settings/settings-edit.php:207
1160
  msgid ""
1161
- "Choose a FROM name and FROM email address for all notifications emails from "
1162
  "this plugin."
1163
  msgstr ""
1164
 
1165
- #: settings/settings-edit.php:217
1166
- msgid "Mail type"
1167
  msgstr ""
1168
 
1169
- #: settings/settings-edit.php:218
1170
  msgid ""
1171
  "Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
1172
- "Option 3 & 4 is to send mails with PHP method mail()"
1173
  msgstr ""
1174
 
1175
- #: settings/settings-edit.php:222
1176
  msgid "1. WP HTML MAIL"
1177
  msgstr ""
1178
 
1179
- #: settings/settings-edit.php:223
1180
  msgid "2. WP PLAINTEXT MAIL"
1181
  msgstr ""
1182
 
1183
- #: settings/settings-edit.php:224
1184
  msgid "3. PHP HTML MAIL"
1185
  msgstr ""
1186
 
1187
- #: settings/settings-edit.php:225
1188
  msgid "4. PHP PLAINTEXT MAIL"
1189
  msgstr ""
1190
 
1191
- #: settings/settings-edit.php:232
1192
- msgid "Opt-in option"
1193
  msgstr ""
1194
 
1195
- #: settings/settings-edit.php:233
1196
  msgid ""
1197
- "Double Opt In, means subscribers need to confirm their email address by an "
1198
- "activation link sent them on a activation email message. Single Opt In, "
1199
  "means subscribers do not need to confirm their email address."
1200
  msgstr ""
1201
 
1202
- #: settings/settings-edit.php:237
1203
  msgid "Double Opt In"
1204
  msgstr ""
1205
 
1206
- #: settings/settings-edit.php:238 subscribers/view-subscriber-add.php:152
1207
- #: subscribers/view-subscriber-edit.php:151
1208
- #: subscribers/view-subscriber-import.php:179
1209
- #: subscribers/view-subscriber-show.php:304
1210
- #: subscribers/view-subscriber-show.php:331
1211
  msgid "Single Opt In"
1212
  msgstr ""
1213
 
1214
- #: settings/settings-edit.php:244
1215
  msgid "Image Size"
1216
  msgstr ""
1217
 
1218
- #: settings/settings-edit.php:245
1219
  msgid ""
1220
- "Select image size for ###POSTIMAGE### to be shown in post notification email"
 
1221
  msgstr ""
1222
 
1223
- #: settings/settings-edit.php:249
1224
  msgid "Full Size"
1225
  msgstr ""
1226
 
1227
- #: settings/settings-edit.php:250
1228
  msgid "Medium Size"
1229
  msgstr ""
1230
 
1231
- #: settings/settings-edit.php:251
1232
  msgid "Thumbnail"
1233
  msgstr ""
1234
 
1235
- #: settings/settings-edit.php:257
1236
- msgid "Opt-in mail subject (Confirmation mail)"
1237
  msgstr ""
1238
 
1239
- #: settings/settings-edit.php:258
1240
  msgid ""
1241
- "Enter the subject for Double Opt In mail. This will send whenever subscriber "
1242
- "added email into our database."
1243
  msgstr ""
1244
 
1245
- #: settings/settings-edit.php:264
1246
- msgid "Opt-in mail content (Confirmation mail)"
1247
  msgstr ""
1248
 
1249
- #: settings/settings-edit.php:265
1250
  msgid ""
1251
- "Enter the content for Double Opt In mail. This will send whenever subscriber "
1252
- "added email into our database."
1253
  msgstr ""
1254
 
1255
- #: settings/settings-edit.php:271
1256
- msgid "Opt-in link (Confirmation link)"
1257
  msgstr ""
1258
 
1259
- #: settings/settings-edit.php:272
1260
- msgid "Double Opt In confirmation link. You no need to change this value."
1261
  msgstr ""
1262
 
1263
- #: settings/settings-edit.php:278
1264
- msgid "Text to display after email subscribed successfully"
 
 
1265
  msgstr ""
1266
 
1267
- #: settings/settings-edit.php:279
1268
  msgid ""
1269
- "This text will display once user clicked email confirmation link from opt-in "
1270
- "(confirmation) email content."
1271
  msgstr ""
1272
 
1273
- #: settings/settings-edit.php:286
1274
- msgid "Subscriber welcome email"
1275
  msgstr ""
1276
 
1277
- #: settings/settings-edit.php:287
1278
- msgid "To send welcome mail to subscriber, This option must be set to YES."
 
 
1279
  msgstr ""
1280
 
1281
- #: settings/settings-edit.php:291 settings/settings-edit.php:319
1282
- #: subscribers/view-subscriber-sync.php:108
1283
  msgid "YES"
1284
  msgstr ""
1285
 
1286
- #: settings/settings-edit.php:292 settings/settings-edit.php:320
1287
- #: subscribers/view-subscriber-sync.php:107
1288
  msgid "NO"
1289
  msgstr ""
1290
 
1291
- #: settings/settings-edit.php:298
1292
- msgid "Welcome mail subject"
1293
  msgstr ""
1294
 
1295
- #: settings/settings-edit.php:299
1296
  msgid ""
1297
- "Enter the subject for subscriber welcome mail. This will send whenever email "
1298
- "subscribed (confirmed) successfully."
 
1299
  msgstr ""
1300
 
1301
- #: settings/settings-edit.php:305
1302
- msgid "Subscriber welcome mail content"
1303
  msgstr ""
1304
 
1305
- #: settings/settings-edit.php:306
1306
  msgid ""
1307
- "Enter the content for subscriber welcome mail. This will send whenever email "
1308
- "subscribed (confirmed) successfully. (Keyword: ###NAME###)"
 
 
 
 
 
1309
  msgstr ""
1310
 
1311
- #: settings/settings-edit.php:314
1312
- msgid "Mail to admin"
1313
  msgstr ""
1314
 
1315
- #: settings/settings-edit.php:315
1316
  msgid ""
1317
- "To send admin notifications for new subscriber, This option must be set to "
1318
- "YES."
1319
  msgstr ""
1320
 
1321
  #: settings/settings-edit.php:326
1322
- msgid "Admin email addresses"
1323
  msgstr ""
1324
 
1325
  #: settings/settings-edit.php:327
1326
- msgid ""
1327
- "Enter the admin email addresses that should receive notifications (separate "
1328
- "by comma)."
1329
- msgstr ""
1330
-
1331
- #: settings/settings-edit.php:333
1332
- msgid "Admin mail subject"
1333
  msgstr ""
1334
 
1335
  #: settings/settings-edit.php:334
1336
- msgid ""
1337
- "Enter the subject for admin mail. This will send whenever new email added "
1338
- "and confirmed into our database."
1339
  msgstr ""
1340
 
1341
- #: settings/settings-edit.php:340
1342
- msgid "Admin mail content"
 
 
1343
  msgstr ""
1344
 
1345
  #: settings/settings-edit.php:341
1346
- msgid ""
1347
- "Enter the mail content for admin. This will send whenever new email added "
1348
- "and confirmed into our database. (Keyword: ###NAME###, ###EMAIL###)"
1349
  msgstr ""
1350
 
1351
- #: settings/settings-edit.php:348
1352
- msgid "Unsubscribe link"
 
 
1353
  msgstr ""
1354
 
1355
  #: settings/settings-edit.php:349
1356
- msgid "Unsubscribe link. You no need to change this value."
1357
  msgstr ""
1358
 
1359
- #: settings/settings-edit.php:355
1360
- msgid "Unsubscribe text in mail"
 
 
1361
  msgstr ""
1362
 
1363
  #: settings/settings-edit.php:356
1364
- msgid ""
1365
- "Enter the text for unsubscribe link. This text is to add unsubscribe link "
1366
- "with newsletter. (Keyword: ###LINK###)"
1367
  msgstr ""
1368
 
1369
- #: settings/settings-edit.php:362
1370
- msgid "Text to display after email unsubscribed"
 
 
1371
  msgstr ""
1372
 
1373
- #: settings/settings-edit.php:363
1374
- msgid ""
1375
- "This text will display once user clicked unsubscribed link from our "
1376
- "newsletter."
1377
  msgstr ""
1378
 
1379
  #: settings/settings-edit.php:370
1380
- msgid "Message 1"
 
 
1381
  msgstr ""
1382
 
1383
- #: settings/settings-edit.php:371
1384
- msgid "Default message to display if any issue on confirmation link."
1385
  msgstr ""
1386
 
1387
  #: settings/settings-edit.php:377
1388
- msgid "Message 2"
 
 
1389
  msgstr ""
1390
 
1391
- #: settings/settings-edit.php:378
1392
- msgid "Default message to display if any issue on unsubscribe link."
1393
  msgstr ""
1394
 
1395
  #: settings/settings-edit.php:385
1396
- msgid "Sent report subject"
 
1397
  msgstr ""
1398
 
1399
- #: settings/settings-edit.php:386
1400
- msgid "Mail subject for sent mail report."
1401
  msgstr ""
1402
 
1403
  #: settings/settings-edit.php:392
1404
- msgid "Sent report content"
1405
- msgstr ""
1406
-
1407
- #: settings/settings-edit.php:393
1408
  msgid ""
1409
- "Mail content for sent mail report. (Keyword: ###COUNT###, ###UNIQUE###, "
1410
- "###STARTTIME###, ###ENDTIME###)"
1411
  msgstr ""
1412
 
1413
- #: settings/settings-edit.php:403
1414
  msgid "Save Settings"
1415
  msgstr ""
1416
 
@@ -1441,87 +1464,87 @@ msgstr ""
1441
  msgid "Invalid Email."
1442
  msgstr ""
1443
 
1444
- #: subscribers/view-subscriber-add.php:112
1445
- #: subscribers/view-subscriber-edit.php:111
1446
- #: subscribers/view-subscriber-export.php:28
1447
- #: subscribers/view-subscriber-import.php:144
1448
- #: subscribers/view-subscriber-show.php:243
1449
- #: subscribers/view-subscriber-sync.php:91
1450
  msgid "Add New Subscriber"
1451
  msgstr ""
1452
 
1453
- #: subscribers/view-subscriber-add.php:113
1454
- #: subscribers/view-subscriber-edit.php:112
1455
- #: subscribers/view-subscriber-export.php:29
1456
- #: subscribers/view-subscriber-import.php:211
1457
- #: subscribers/view-subscriber-show.php:244
1458
- #: subscribers/view-subscriber-sync.php:92
1459
  msgid "Import"
1460
  msgstr ""
1461
 
1462
- #: subscribers/view-subscriber-add.php:114
1463
- #: subscribers/view-subscriber-edit.php:113
1464
- #: subscribers/view-subscriber-import.php:145
1465
- #: subscribers/view-subscriber-show.php:245
1466
- #: subscribers/view-subscriber-sync.php:93
1467
  msgid "Export"
1468
  msgstr ""
1469
 
1470
- #: subscribers/view-subscriber-add.php:115
1471
- #: subscribers/view-subscriber-edit.php:114
1472
- #: subscribers/view-subscriber-export.php:30
1473
- #: subscribers/view-subscriber-import.php:146
1474
- #: subscribers/view-subscriber-show.php:246
1475
- #: subscribers/view-subscriber-sync.php:144
1476
  msgid "Sync"
1477
  msgstr ""
1478
 
1479
- #: subscribers/view-subscriber-add.php:124
1480
  msgid "Enter Subscriber's Full name"
1481
  msgstr ""
1482
 
1483
- #: subscribers/view-subscriber-add.php:134
1484
  msgid "Enter Subscriber's Email Address"
1485
  msgstr ""
1486
 
1487
- #: subscribers/view-subscriber-add.php:144
1488
  msgid "Select Subscriber's Status"
1489
  msgstr ""
1490
 
1491
- #: subscribers/view-subscriber-add.php:149
1492
- #: subscribers/view-subscriber-edit.php:148
1493
- #: subscribers/view-subscriber-import.php:176
1494
- #: subscribers/view-subscriber-show.php:301
1495
- #: subscribers/view-subscriber-show.php:328
1496
  msgid "Confirmed"
1497
  msgstr ""
1498
 
1499
- #: subscribers/view-subscriber-add.php:150
1500
- #: subscribers/view-subscriber-edit.php:149
1501
- #: subscribers/view-subscriber-import.php:177
1502
- #: subscribers/view-subscriber-show.php:302
1503
- #: subscribers/view-subscriber-show.php:329
1504
  msgid "Unconfirmed"
1505
  msgstr ""
1506
 
1507
- #: subscribers/view-subscriber-add.php:151
1508
- #: subscribers/view-subscriber-edit.php:150
1509
- #: subscribers/view-subscriber-import.php:178
1510
- #: subscribers/view-subscriber-show.php:303
1511
- #: subscribers/view-subscriber-show.php:330
1512
  msgid "Unsubscribed"
1513
  msgstr ""
1514
 
1515
- #: subscribers/view-subscriber-add.php:159
1516
  msgid "Select (or) Create Group for Subscriber"
1517
  msgstr ""
1518
 
1519
- #: subscribers/view-subscriber-add.php:175
1520
- #: subscribers/view-subscriber-import.php:203
1521
  msgid "(or)"
1522
  msgstr ""
1523
 
1524
- #: subscribers/view-subscriber-add.php:184
1525
  msgid "Add Subscriber"
1526
  msgstr ""
1527
 
@@ -1537,67 +1560,67 @@ msgstr ""
1537
  msgid "Subscriber already exists for this group."
1538
  msgstr ""
1539
 
1540
- #: subscribers/view-subscriber-edit.php:110
1541
  msgid "Edit Subscriber"
1542
  msgstr ""
1543
 
1544
- #: subscribers/view-subscriber-edit.php:123
1545
- msgid "Edit Subscriber's Full Name"
1546
  msgstr ""
1547
 
1548
- #: subscribers/view-subscriber-edit.php:133
1549
- msgid "Edit Subscriber's Email Address"
1550
  msgstr ""
1551
 
1552
- #: subscribers/view-subscriber-edit.php:143
1553
  msgid "Update Subscriber's Status"
1554
  msgstr ""
1555
 
1556
- #: subscribers/view-subscriber-edit.php:158
1557
  msgid "Update Subscriber's Group"
1558
  msgstr ""
1559
 
1560
- #: subscribers/view-subscriber-export.php:27
1561
  msgid "Export Email Addresses"
1562
  msgstr ""
1563
 
1564
- #: subscribers/view-subscriber-export.php:39
1565
- #: subscribers/view-subscriber-export.php:47
1566
  msgid "Type of List to Export"
1567
  msgstr ""
1568
 
1569
- #: subscribers/view-subscriber-export.php:40
1570
- #: subscribers/view-subscriber-export.php:48
1571
  msgid "Total Emails"
1572
  msgstr ""
1573
 
1574
- #: subscribers/view-subscriber-export.php:54
1575
  msgid "1"
1576
  msgstr ""
1577
 
1578
- #: subscribers/view-subscriber-export.php:55
1579
  msgid "All Subscribers List"
1580
  msgstr ""
1581
 
1582
- #: subscribers/view-subscriber-export.php:57
1583
- #: subscribers/view-subscriber-export.php:63
1584
- #: subscribers/view-subscriber-export.php:69
1585
  msgid "Click to Export in CSV"
1586
  msgstr ""
1587
 
1588
- #: subscribers/view-subscriber-export.php:60
1589
  msgid "2"
1590
  msgstr ""
1591
 
1592
- #: subscribers/view-subscriber-export.php:61
1593
  msgid "WordPress Registered Users"
1594
  msgstr ""
1595
 
1596
- #: subscribers/view-subscriber-export.php:66
1597
  msgid "3"
1598
  msgstr ""
1599
 
1600
- #: subscribers/view-subscriber-export.php:67
1601
  msgid "Commented Authors"
1602
  msgstr ""
1603
 
@@ -1633,27 +1656,27 @@ msgstr ""
1633
  msgid "File Upload Failed."
1634
  msgstr ""
1635
 
1636
- #: subscribers/view-subscriber-import.php:143
1637
  msgid "Import Email Addresses"
1638
  msgstr ""
1639
 
1640
- #: subscribers/view-subscriber-import.php:156
1641
  msgid "Select CSV file"
1642
  msgstr ""
1643
 
1644
- #: subscribers/view-subscriber-import.php:158
1645
  msgid "Check CSV structure "
1646
  msgstr ""
1647
 
1648
- #: subscribers/view-subscriber-import.php:159
1649
  msgid "from here"
1650
  msgstr ""
1651
 
1652
- #: subscribers/view-subscriber-import.php:170
1653
  msgid "Select Subscribers Email Status"
1654
  msgstr ""
1655
 
1656
- #: subscribers/view-subscriber-import.php:186
1657
  msgid "Select (or) Create Group for Subscribers"
1658
  msgstr ""
1659
 
@@ -1704,89 +1727,85 @@ msgstr ""
1704
  msgid "Please select New Status to update."
1705
  msgstr ""
1706
 
1707
- #: subscribers/view-subscriber-show.php:242
1708
- msgid "View Subscribers"
1709
- msgstr ""
1710
-
1711
- #: subscribers/view-subscriber-show.php:278
1712
  msgid "Bulk Actions"
1713
  msgstr ""
1714
 
1715
- #: subscribers/view-subscriber-show.php:280
1716
- #: subscribers/view-subscriber-show.php:413
1717
  msgid "Resend Confirmation"
1718
  msgstr ""
1719
 
1720
- #: subscribers/view-subscriber-show.php:282
1721
  msgid "Update Subscribers Status"
1722
  msgstr ""
1723
 
1724
- #: subscribers/view-subscriber-show.php:285
1725
  msgid "Select Group"
1726
  msgstr ""
1727
 
1728
- #: subscribers/view-subscriber-show.php:300
1729
- #: subscribers/view-subscriber-show.php:327
1730
  msgid "All Status"
1731
  msgstr ""
1732
 
1733
- #: subscribers/view-subscriber-show.php:306
1734
  msgid "Apply"
1735
  msgstr ""
1736
 
1737
- #: subscribers/view-subscriber-show.php:310
1738
  msgid "All Groups"
1739
  msgstr ""
1740
 
1741
- #: subscribers/view-subscriber-show.php:334
1742
  msgid "1 to 200 emails"
1743
  msgstr ""
1744
 
1745
- #: subscribers/view-subscriber-show.php:335
1746
  msgid "201 to 400"
1747
  msgstr ""
1748
 
1749
- #: subscribers/view-subscriber-show.php:336
1750
  msgid "401 to 600"
1751
  msgstr ""
1752
 
1753
- #: subscribers/view-subscriber-show.php:337
1754
  msgid "601 to 800"
1755
  msgstr ""
1756
 
1757
- #: subscribers/view-subscriber-show.php:338
1758
  msgid "801 to 1000"
1759
  msgstr ""
1760
 
1761
- #: subscribers/view-subscriber-show.php:339
1762
  msgid "1001 to 2000"
1763
  msgstr ""
1764
 
1765
- #: subscribers/view-subscriber-show.php:340
1766
  msgid "2001 to 5000"
1767
  msgstr ""
1768
 
1769
- #: subscribers/view-subscriber-show.php:341
1770
  msgid "5001 to 10000"
1771
  msgstr ""
1772
 
1773
- #: subscribers/view-subscriber-show.php:342
1774
  msgid "Display All"
1775
  msgstr ""
1776
 
1777
- #: subscribers/view-subscriber-show.php:354
1778
- #: subscribers/view-subscriber-show.php:368
1779
  msgid "Email Address"
1780
  msgstr ""
1781
 
1782
- #: subscribers/view-subscriber-show.php:357
1783
- #: subscribers/view-subscriber-show.php:371
1784
  msgid "Group"
1785
  msgstr ""
1786
 
1787
- #: subscribers/view-subscriber-show.php:358
1788
- #: subscribers/view-subscriber-show.php:372
1789
- msgid "Submission Date<br>(YYYY-MM-DD)"
1790
  msgstr ""
1791
 
1792
  #: subscribers/view-subscriber-sync.php:35
@@ -1797,15 +1816,15 @@ msgstr ""
1797
  msgid "Emails Successfully Synced."
1798
  msgstr ""
1799
 
1800
- #: subscribers/view-subscriber-sync.php:90
1801
  msgid "Sync Email"
1802
  msgstr ""
1803
 
1804
- #: subscribers/view-subscriber-sync.php:102
1805
  msgid "Sync newly registered users to subscribers list"
1806
  msgstr ""
1807
 
1808
- #: subscribers/view-subscriber-sync.php:115
1809
  msgid "Select group to add newly registered users to"
1810
  msgstr ""
1811
 
@@ -1813,9 +1832,9 @@ msgstr ""
1813
  msgid "Email Subscribers & Newsletters"
1814
  msgstr ""
1815
 
1816
- #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.5) #-#-#-#-#
1817
  #. Plugin URI of the plugin/theme
1818
- #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.5) #-#-#-#-#
1819
  #. Author URI of the plugin/theme
1820
  msgid "http://www.icegram.com/"
1821
  msgstr ""
2
  # This file is distributed under the same license as the Email Subscribers & Newsletters package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Email Subscribers & Newsletters 3.2.6\n"
6
  "Report-Msgid-Bugs-To: http://www.storeapps.org/support/contact-us/\n"
7
+ "POT-Creation-Date: 2017-01-18 05:36:03+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: Wed, 18 Jan 2017 11:06:03 +0530\n"
12
  "Last-Translator: Ratnakar Dubey <ratnakar.dubey@storeapps.org>\n"
13
  "Language-Team: StoreApps <support@storeapps.org>\n"
14
 
57
  msgstr ""
58
 
59
  #: classes/es-loadwidget.php:24 classes/es-register.php:499
60
+ #: subscribers/view-subscriber-show.php:353
61
+ #: subscribers/view-subscriber-show.php:367
62
  msgid "Name"
63
  msgstr ""
64
 
75
  msgstr ""
76
 
77
  #: classes/es-register.php:142 classes/es-register.php:143
78
+ #: subscribers/view-subscriber-show.php:240
79
  msgid "Subscribers"
80
  msgstr ""
81
 
82
  #: classes/es-register.php:145 classes/es-register.php:146
83
+ #: compose/compose-show.php:63
84
  msgid "Compose"
85
  msgstr ""
86
 
87
  #: classes/es-register.php:148 classes/es-register.php:149
88
+ #: notification/notification-show.php:51
89
+ msgid "Post Notifications"
90
  msgstr ""
91
 
92
  #: classes/es-register.php:151 classes/es-register.php:152
93
+ #: sendmail/sendmail.php:92
94
+ msgid "Newsletters"
 
95
  msgstr ""
96
 
97
+ #: classes/es-register.php:154 classes/es-register.php:155
98
+ #: cron/cron-add.php:78
99
+ msgid "Cron Settings"
 
 
 
100
  msgstr ""
101
 
102
  #: classes/es-register.php:157 classes/es-register.php:158
103
+ #: settings/settings-edit.php:196
104
+ msgid "Email Settings"
105
  msgstr ""
106
 
107
  #: classes/es-register.php:160 classes/es-register.php:161
108
+ #: roles/roles-add.php:109
109
+ msgid "User Roles"
110
  msgstr ""
111
 
112
  #: classes/es-register.php:163 classes/es-register.php:164
113
+ #: sentmail/sentmail-show.php:95
114
+ msgid "Reports"
115
  msgstr ""
116
 
117
  #: classes/es-register.php:166
422
  msgid "Template successfully created. "
423
  msgstr ""
424
 
425
+ #: compose/compose-add.php:73
426
+ msgid "Add new Email"
427
+ msgstr ""
428
+
429
+ #: compose/compose-add.php:74 compose/compose-edit.php:85
430
+ #: compose/compose-preview.php:27 compose/compose-show.php:65
431
+ #: cron/cron-add.php:79 notification/notification-add.php:112
432
+ #: notification/notification-edit.php:123
433
+ #: notification/notification-show.php:53 roles/roles-add.php:110
434
+ #: sendmail/sendmail.php:93 sentmail/deliverreport-show.php:60
435
+ #: sentmail/sentmail-preview.php:27 sentmail/sentmail-show.php:96
436
+ #: settings/settings-edit.php:197 subscribers/view-subscriber-add.php:113
437
+ #: subscribers/view-subscriber-edit.php:112
438
+ #: subscribers/view-subscriber-export.php:29
439
+ #: subscribers/view-subscriber-import.php:145
440
+ #: subscribers/view-subscriber-show.php:245
441
+ #: subscribers/view-subscriber-sync.php:91
 
442
  msgid "Help"
443
  msgstr ""
444
 
445
+ #: compose/compose-add.php:77 compose/compose-edit.php:88
446
  msgid "Select your Mail Type"
447
  msgstr ""
448
 
449
+ #: compose/compose-add.php:79 compose/compose-edit.php:90
450
+ msgid "Static Template (For Newsletter Emails)"
451
  msgstr ""
452
 
453
+ #: compose/compose-add.php:80 compose/compose-edit.php:91
454
+ msgid "Dynamic Template (For Post Notification Emails)"
455
  msgstr ""
456
 
457
+ #: compose/compose-add.php:84 compose/compose-edit.php:95
458
  msgid "Enter Mail Subject"
459
  msgstr ""
460
 
461
+ #: compose/compose-add.php:86 compose/compose-edit.php:97
462
  msgid "Keyword: ###POSTTITLE###"
463
  msgstr ""
464
 
465
+ #: compose/compose-add.php:88 compose/compose-edit.php:99
466
  msgid "Enter Content for your Mail"
467
  msgstr ""
468
 
469
+ #: compose/compose-add.php:92 compose/compose-edit.php:103
470
  msgid ""
471
  "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
472
  "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
473
  "###POSTDESC###, ###POSTFULL###"
474
  msgstr ""
475
 
476
+ #: compose/compose-add.php:92 compose/compose-edit.php:103
477
  msgid "Available Keywords"
478
  msgstr ""
479
 
480
+ #: compose/compose-add.php:96 compose/compose-edit.php:107
481
+ #: compose/compose-show.php:77 compose/compose-show.php:85
482
+ #: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:85
483
+ #: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
484
+ #: subscribers/view-subscriber-show.php:354
485
+ #: subscribers/view-subscriber-show.php:368
486
  msgid "Status"
487
  msgstr ""
488
 
489
+ #: compose/compose-add.php:98 compose/compose-edit.php:109
490
  msgid "Published"
491
  msgstr ""
492
 
493
+ #: compose/compose-add.php:100 compose/compose-edit.php:111
494
  msgid "Please select your mail status"
495
  msgstr ""
496
 
497
+ #: compose/compose-add.php:104 compose/compose-edit.php:116
498
+ #: cron/cron-add.php:119 notification/notification-add.php:251
499
+ #: notification/notification-edit.php:291 roles/roles-add.php:206
500
+ #: subscribers/view-subscriber-edit.php:190
501
  msgid "Save"
502
  msgstr ""
503
 
513
  msgid "Template successfully updated. "
514
  msgstr ""
515
 
516
+ #: compose/compose-edit.php:83
517
+ msgid "Edit Email"
518
+ msgstr ""
519
+
520
+ #: compose/compose-edit.php:84 compose/compose-show.php:64
521
+ #: notification/notification-edit.php:122
522
+ #: notification/notification-show.php:52
523
  msgid "Add New"
524
  msgstr ""
525
 
526
+ #: compose/compose-preview.php:26 sentmail/sentmail-preview.php:26
527
  msgid "Preview Mail"
528
  msgstr ""
529
 
530
+ #: compose/compose-preview.php:39 compose/compose-show.php:103
531
+ #: notification/notification-show.php:96
532
+ #: subscribers/view-subscriber-show.php:398
533
  msgid "Edit"
534
  msgstr ""
535
 
543
  msgid "Selected record deleted."
544
  msgstr ""
545
 
546
+ #: compose/compose-show.php:76 compose/compose-show.php:84
547
  msgid "Email subject"
548
  msgstr ""
549
 
550
+ #: compose/compose-show.php:78 compose/compose-show.php:86
551
+ #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:86
552
+ #: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
553
  msgid "Type"
554
  msgstr ""
555
 
556
+ #: compose/compose-show.php:79 compose/compose-show.php:87
557
  msgid "Actions"
558
  msgstr ""
559
 
560
+ #: compose/compose-show.php:104 notification/notification-show.php:99
561
+ #: subscribers/view-subscriber-show.php:277
562
+ #: subscribers/view-subscriber-show.php:403
563
  msgid "Delete"
564
  msgstr ""
565
 
566
+ #: compose/compose-show.php:105 sentmail/sentmail-show.php:110
567
+ #: sentmail/sentmail-show.php:123
568
  msgid "Preview"
569
  msgstr ""
570
 
571
+ #: compose/compose-show.php:113 notification/notification-show.php:139
572
+ #: sentmail/deliverreport-show.php:113 sentmail/sentmail-show.php:166
573
+ #: subscribers/view-subscriber-show.php:426
574
  msgid "No records available."
575
  msgstr ""
576
 
579
  msgstr ""
580
 
581
  #: cron/cron-add.php:33
582
+ msgid "Successfully updated."
583
  msgstr ""
584
 
585
+ #: cron/cron-add.php:86
 
 
 
 
586
  msgid "Cron job URL"
587
  msgstr ""
588
 
589
+ #: cron/cron-add.php:87
590
  msgid ""
591
+ "This is your Cron Job URL. It is a readonly field and you are advised not to "
592
  "modify it."
593
  msgstr ""
594
 
595
+ #: cron/cron-add.php:96
596
  msgid "Mail Count"
597
  msgstr ""
598
 
599
+ #: cron/cron-add.php:97
600
+ msgid "Number of mails you want to trigger per hour."
 
 
601
  msgstr ""
602
 
603
+ #: cron/cron-add.php:102
604
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
605
+ msgstr ""
606
+
607
+ #: cron/cron-add.php:107
608
  msgid "Admin Report"
609
  msgstr ""
610
 
611
+ #: cron/cron-add.php:108
612
  msgid ""
613
+ "Email to admin whenever cron URL is triggered from your server. (Keywords: "
614
+ "###DATE###, ###SUBJECT###, ###COUNT###)"
615
  msgstr ""
616
 
617
+ #: cron/cron-add.php:125
618
+ msgid "What is Cron (auto emails) and how to setup Cron Job?"
619
  msgstr ""
620
 
621
+ #: cron/cron-add.php:126
622
  msgid ""
623
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
624
  "schedule-cron-emails/\">What is Cron?</a>"
625
  msgstr ""
626
 
627
+ #: cron/cron-add.php:127
628
  msgid ""
629
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
630
  "schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
631
  msgstr ""
632
 
633
+ #: cron/cron-add.php:128
634
  msgid ""
635
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
636
  "schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
637
  msgstr ""
638
 
639
+ #: cron/cron-add.php:129
640
  msgid ""
641
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-"
642
+ "do-if-hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?"
643
+ "</a>"
644
  msgstr ""
645
 
646
  #: export/export-email-address.php:33 export/export-email-address.php:37
660
  msgid "For more help and tips..."
661
  msgstr ""
662
 
663
+ #: help/help.php:66
664
+ msgid "Like Email Subscribers? Please consider %s."
665
+ msgstr ""
666
+
667
+ #: help/help.php:66
668
+ msgid "contributing to us"
669
+ msgstr ""
670
+
671
+ #: help/help.php:98
672
  msgid "Frequently Asked Questions"
673
  msgstr ""
674
 
675
+ #: help/help.php:117 help/help.php:126 help/help.php:129 help/help.php:132
676
+ #: help/help.php:135 help/help.php:138 help/help.php:141 help/help.php:144
677
+ #: help/help.php:147 help/help.php:150 help/help.php:153 help/help.php:156
678
+ #: help/help.php:159 help/help.php:162 help/help.php:165 help/help.php:168
679
+ #: help/help.php:171 help/help.php:174 help/help.php:177
680
  msgid "%s"
681
  msgstr ""
682
 
683
+ #: help/help.php:117
684
  msgid "How to Add Subscription box to website?"
685
  msgstr ""
686
 
 
 
 
 
687
  #: help/help.php:126
688
  msgid "General Plugin Settings"
689
  msgstr ""
690
 
691
  #: help/help.php:126
692
  msgid ""
693
+ " (How to modify the existing email content like Confirmation email, Welcome "
694
+ "email, Admin emails)"
695
  msgstr ""
696
 
697
  #: help/help.php:129
698
+ msgid "How to Import or Export Email Addresses?"
699
  msgstr ""
700
 
701
  #: help/help.php:132
702
+ msgid "How to change/update/translate any texts from Email Subscribers?"
703
  msgstr ""
704
 
705
  #: help/help.php:135
706
+ msgid "How to add Unsubscribe link in emails?"
707
  msgstr ""
708
 
709
  #: help/help.php:138
710
+ msgid "What are Static Templates and Dynamic Templates?"
711
  msgstr ""
712
 
713
  #: help/help.php:141
714
+ msgid "How to Compose and Send Newsletter Emails?"
 
 
715
  msgstr ""
716
 
717
  #: help/help.php:144
718
+ msgid ""
719
+ "How to Configure and Send Post Notification emails to subscribers when new "
720
+ "posts are published?"
721
  msgstr ""
722
 
723
  #: help/help.php:147
724
+ msgid "How to Send a sample new post notification email to testgroup/myself?"
725
  msgstr ""
726
 
727
  #: help/help.php:150
728
+ msgid "How to check Sent emails reports?"
729
  msgstr ""
730
 
731
  #: help/help.php:153
732
+ msgid "How to Add/Update Existing Subscribers Group?"
733
  msgstr ""
734
 
735
  #: help/help.php:156
736
+ msgid "Subscribers are not receiving Emails?"
737
  msgstr ""
738
 
739
  #: help/help.php:159
740
+ msgid "How to show subscribe form inside a popup?"
741
  msgstr ""
742
 
743
  #: help/help.php:162
744
+ msgid "How to use Rainmaker’s form in Email Subscribers?"
745
  msgstr ""
746
 
747
  #: help/help.php:165
748
+ msgid "How to Schedule Cron Mails?"
749
  msgstr ""
750
 
751
  #: help/help.php:168
752
+ msgid "How to Schedule Cron Emails in cPanel?"
753
  msgstr ""
754
 
755
  #: help/help.php:171
756
+ msgid "How to Schedule Cron Emails in Parallels Plesk?"
757
  msgstr ""
758
 
759
  #: help/help.php:174
760
+ msgid "What to do if Hosting doesn’t support Cron Jobs?"
761
+ msgstr ""
762
+
763
+ #: help/help.php:177
764
  msgid "Commonly Asked Questions"
765
  msgstr ""
766
 
796
  msgid "Notification successfully created. "
797
  msgstr ""
798
 
799
+ #: notification/notification-add.php:111
800
  msgid "Add Notification"
801
  msgstr ""
802
 
803
+ #: notification/notification-add.php:119
804
  msgid "Select Subscribers Group"
805
  msgstr ""
806
 
807
+ #: notification/notification-add.php:123 notification/notification-add.php:147
808
+ #: notification/notification-edit.php:134
809
+ #: notification/notification-edit.php:167 sendmail/sendmail.php:109
810
  #: sendmail/sendmail.php:136 sendmail/sendmail.php:150
811
+ #: subscribers/view-subscriber-add.php:161
812
+ #: subscribers/view-subscriber-edit.php:161
813
+ #: subscribers/view-subscriber-import.php:189
814
+ #: subscribers/view-subscriber-sync.php:118
815
  msgid "Select"
816
  msgstr ""
817
 
818
+ #: notification/notification-add.php:141
819
+ #: notification/notification-edit.php:161
820
  msgid "Select Notification Mail Subject"
821
  msgstr ""
822
 
823
+ #: notification/notification-add.php:142
824
+ #: notification/notification-edit.php:162
825
  msgid "(Use compose menu to create new)"
826
  msgstr ""
827
 
828
+ #: notification/notification-add.php:166
829
+ #: notification/notification-edit.php:189
830
  msgid "Select Post Categories"
831
  msgstr ""
832
 
833
+ #: notification/notification-add.php:193
834
+ #: notification/notification-edit.php:224
835
  msgid "Check All"
836
  msgstr ""
837
 
838
+ #: notification/notification-add.php:194
839
+ #: notification/notification-edit.php:225
840
  msgid "Uncheck All"
841
  msgstr ""
842
 
843
+ #: notification/notification-add.php:200
844
+ #: notification/notification-edit.php:232
845
  msgid "Select your Custom Post Type"
846
  msgstr ""
847
 
848
+ #: notification/notification-add.php:201
849
+ #: notification/notification-edit.php:233
850
  msgid "(Optional)"
851
  msgstr ""
852
 
853
+ #: notification/notification-add.php:230
854
+ #: notification/notification-edit.php:267
855
  msgid "No Custom Post Types Available"
856
  msgstr ""
857
 
858
+ #: notification/notification-add.php:237
859
+ #: notification/notification-edit.php:275
860
  msgid "Select Notification Status"
861
  msgstr ""
862
 
863
+ #: notification/notification-add.php:241
864
+ #: notification/notification-edit.php:280
865
  msgid "Send mail immediately when new post is published"
866
  msgstr ""
867
 
868
+ #: notification/notification-add.php:242
869
+ #: notification/notification-edit.php:281
870
  msgid "Add to cron when new post is published and send via cron job"
871
  msgstr ""
872
 
873
+ #: notification/notification-add.php:243
874
+ #: notification/notification-edit.php:282
875
  msgid "Disable notification"
876
  msgstr ""
877
 
887
  msgid "Notification successfully updated. "
888
  msgstr ""
889
 
890
+ #: notification/notification-edit.php:121
891
  msgid "Edit Notification"
892
  msgstr ""
893
 
894
+ #: notification/notification-edit.php:130
895
+ #: subscribers/view-subscriber-show.php:279
896
  msgid "Update Subscribers Group"
897
  msgstr ""
898
 
899
+ #: notification/notification-show.php:64 notification/notification-show.php:72
900
  msgid "Mail Subject"
901
  msgstr ""
902
 
903
+ #: notification/notification-show.php:65 notification/notification-show.php:73
904
  msgid "Subscribers Group"
905
  msgstr ""
906
 
907
+ #: notification/notification-show.php:66 notification/notification-show.php:74
908
  msgid "Categories / Custom Post"
909
  msgstr ""
910
 
911
+ #: notification/notification-show.php:67 notification/notification-show.php:75
912
  msgid "Notification Status"
913
  msgstr ""
914
 
915
+ #: notification/notification-show.php:126
916
  msgid "Send mail immediately when new post is published."
917
  msgstr ""
918
 
919
+ #: notification/notification-show.php:128
920
  msgid "Add to cron and send mail via cron job."
921
  msgstr ""
922
 
924
  msgid "Role Updated. "
925
  msgstr ""
926
 
927
+ #: roles/roles-add.php:113
 
 
 
 
928
  msgid ""
929
  "Select user roles who can access following menus. Only Admin can change this."
930
  msgstr ""
931
 
932
+ #: roles/roles-add.php:120
933
  msgid "Subscribers Menu"
934
  msgstr ""
935
 
936
+ #: roles/roles-add.php:124 roles/roles-add.php:136 roles/roles-add.php:148
937
+ #: roles/roles-add.php:160 roles/roles-add.php:172 roles/roles-add.php:184
938
+ #: roles/roles-add.php:196
939
  msgid "Administrator Only"
940
  msgstr ""
941
 
942
+ #: roles/roles-add.php:125 roles/roles-add.php:137 roles/roles-add.php:149
943
+ #: roles/roles-add.php:161 roles/roles-add.php:173 roles/roles-add.php:185
944
+ #: roles/roles-add.php:197
945
  msgid "Administrator/Editor"
946
  msgstr ""
947
 
948
+ #: roles/roles-add.php:126 roles/roles-add.php:138 roles/roles-add.php:150
949
+ #: roles/roles-add.php:162 roles/roles-add.php:174 roles/roles-add.php:186
950
+ #: roles/roles-add.php:198
951
  msgid "Administrator/Editor/Author/Contributor"
952
  msgstr ""
953
 
954
+ #: roles/roles-add.php:132
955
  msgid "Compose Menu"
956
  msgstr ""
957
 
958
+ #: roles/roles-add.php:144
959
+ msgid "Post Notifications Menu"
960
  msgstr ""
961
 
962
+ #: roles/roles-add.php:156
963
+ msgid "Newsletters + Cron Settings Menu"
964
  msgstr ""
965
 
966
+ #: roles/roles-add.php:168
967
+ msgid "Email Settings Menu"
968
  msgstr ""
969
 
970
+ #: roles/roles-add.php:180
971
+ msgid "Reports Menu"
972
  msgstr ""
973
 
974
+ #: roles/roles-add.php:192
975
  msgid "Help & Info Menu"
976
  msgstr ""
977
 
999
  msgid "Oops.. We are getting some error. mail not sending."
1000
  msgstr ""
1001
 
1002
+ #: sendmail/sendmail.php:96
1003
+ msgid "Use this to send newsletter emails to your subscribers."
1004
+ msgstr ""
1005
+
1006
  #: sendmail/sendmail.php:104
1007
  msgid "Select Mail Subject from available list"
1008
  msgstr ""
1038
  "strong><br>Click on Help for more information."
1039
  msgstr ""
1040
 
1041
+ #: sendmail/sendmail.php:193 sendmail/sendmail.php:195
1042
+ msgid "Send Email"
1043
+ msgstr ""
1044
+
1045
  #: sendmail/sendmail.php:198
1046
  msgid "Reset"
1047
  msgstr ""
1058
  msgid " &gt;&gt; "
1059
  msgstr ""
1060
 
1061
+ #: sentmail/deliverreport-show.php:59
1062
  msgid "Delivery Report"
1063
  msgstr ""
1064
 
1065
+ #: sentmail/deliverreport-show.php:70 sentmail/deliverreport-show.php:82
1066
+ #: subscribers/view-subscriber-export.php:36
1067
+ #: subscribers/view-subscriber-export.php:44
1068
+ #: subscribers/view-subscriber-show.php:351
1069
+ #: subscribers/view-subscriber-show.php:365
1070
  msgid "Sno"
1071
  msgstr ""
1072
 
1073
+ #: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:83
1074
  msgid "Email"
1075
  msgstr ""
1076
 
1077
+ #: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:84
1078
  msgid "Sent Date"
1079
  msgstr ""
1080
 
1081
+ #: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:87
1082
  msgid "Viewed Status"
1083
  msgstr ""
1084
 
1085
+ #: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:88
1086
  msgid "Viewed Date"
1087
  msgstr ""
1088
 
1089
+ #: sentmail/deliverreport-show.php:77 sentmail/deliverreport-show.php:89
1090
  msgid "Database ID"
1091
  msgstr ""
1092
 
1093
+ #: sentmail/sentmail-preview.php:41
1094
  msgid "Back"
1095
  msgstr ""
1096
 
1098
  msgid "Successfully deleted all reports except latest 10."
1099
  msgstr ""
1100
 
1101
+ #: sentmail/sentmail-show.php:99
1102
+ msgid ""
1103
+ "It will show reports for all Newsletters & Post Notification emails sent."
1104
+ msgstr ""
1105
+
1106
+ #: sentmail/sentmail-show.php:109 sentmail/sentmail-show.php:122
1107
  msgid "View Reports"
1108
  msgstr ""
1109
 
1110
+ #: sentmail/sentmail-show.php:111 sentmail/sentmail-show.php:124
1111
  msgid "Source"
1112
  msgstr ""
1113
 
1114
+ #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
1115
  msgid "Start Date"
1116
  msgstr ""
1117
 
1118
+ #: sentmail/sentmail-show.php:115 sentmail/sentmail-show.php:128
1119
  msgid "End Date"
1120
  msgstr ""
1121
 
1122
+ #: sentmail/sentmail-show.php:116 sentmail/sentmail-show.php:129
1123
  msgid "Total"
1124
  msgstr ""
1125
 
1126
+ #: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
1127
+ #: subscribers/view-subscriber-export.php:39
1128
+ #: subscribers/view-subscriber-export.php:47
1129
+ #: subscribers/view-subscriber-show.php:357
1130
+ #: subscribers/view-subscriber-show.php:371
1131
  msgid "Action"
1132
  msgstr ""
1133
 
1134
+ #: sentmail/sentmail-show.php:176
1135
  msgid "Optimize Table & Delete Records"
1136
  msgstr ""
1137
 
1138
+ #: sentmail/sentmail-show.php:185
1139
  msgid ""
1140
  "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1141
  "button to delete all reports except latest 10."
1169
  msgid "Oops, unable to update."
1170
  msgstr ""
1171
 
1172
+ #: settings/settings-edit.php:204
1173
+ msgid "Sender of Notifications"
1174
  msgstr ""
1175
 
1176
+ #: settings/settings-edit.php:206
1177
  msgid ""
1178
+ "Choose a FROM name and FROM email address for all the emails to be sent from "
1179
  "this plugin."
1180
  msgstr ""
1181
 
1182
+ #: settings/settings-edit.php:215
1183
+ msgid "Mail Type"
1184
  msgstr ""
1185
 
1186
+ #: settings/settings-edit.php:216
1187
  msgid ""
1188
  "Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
1189
+ "Option 3 & 4 is to send mails with PHP method mail()."
1190
  msgstr ""
1191
 
1192
+ #: settings/settings-edit.php:220
1193
  msgid "1. WP HTML MAIL"
1194
  msgstr ""
1195
 
1196
+ #: settings/settings-edit.php:221
1197
  msgid "2. WP PLAINTEXT MAIL"
1198
  msgstr ""
1199
 
1200
+ #: settings/settings-edit.php:222
1201
  msgid "3. PHP HTML MAIL"
1202
  msgstr ""
1203
 
1204
+ #: settings/settings-edit.php:223
1205
  msgid "4. PHP PLAINTEXT MAIL"
1206
  msgstr ""
1207
 
1208
+ #: settings/settings-edit.php:230
1209
+ msgid "Opt-in Option"
1210
  msgstr ""
1211
 
1212
+ #: settings/settings-edit.php:231
1213
  msgid ""
1214
+ "Double Opt In means subscribers need to confirm their email address by an "
1215
+ "activation link sent them on a activation email message.<br />Single Opt In "
1216
  "means subscribers do not need to confirm their email address."
1217
  msgstr ""
1218
 
1219
+ #: settings/settings-edit.php:235
1220
  msgid "Double Opt In"
1221
  msgstr ""
1222
 
1223
+ #: settings/settings-edit.php:236 subscribers/view-subscriber-add.php:150
1224
+ #: subscribers/view-subscriber-edit.php:149
1225
+ #: subscribers/view-subscriber-import.php:177
1226
+ #: subscribers/view-subscriber-show.php:302
1227
+ #: subscribers/view-subscriber-show.php:329
1228
  msgid "Single Opt In"
1229
  msgstr ""
1230
 
1231
+ #: settings/settings-edit.php:242
1232
  msgid "Image Size"
1233
  msgstr ""
1234
 
1235
+ #: settings/settings-edit.php:243
1236
  msgid ""
1237
+ "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
1238
+ "Emails."
1239
  msgstr ""
1240
 
1241
+ #: settings/settings-edit.php:247
1242
  msgid "Full Size"
1243
  msgstr ""
1244
 
1245
+ #: settings/settings-edit.php:248
1246
  msgid "Medium Size"
1247
  msgstr ""
1248
 
1249
+ #: settings/settings-edit.php:249
1250
  msgid "Thumbnail"
1251
  msgstr ""
1252
 
1253
+ #: settings/settings-edit.php:255
1254
+ msgid "Double Opt In Mail Subject (Confirmation Email)"
1255
  msgstr ""
1256
 
1257
+ #: settings/settings-edit.php:256
1258
  msgid ""
1259
+ "Enter the subject for the confirmation email to be sent Double Opt In "
1260
+ "whenever a user signs up."
1261
  msgstr ""
1262
 
1263
+ #: settings/settings-edit.php:262
1264
+ msgid "Double Opt In Mail Content (Confirmation Email)"
1265
  msgstr ""
1266
 
1267
+ #: settings/settings-edit.php:263
1268
  msgid ""
1269
+ "Enter the content for the confirmation email to be sent for Double Opt In "
1270
+ "whenever a user signs up. (Keyword: ###NAME###)"
1271
  msgstr ""
1272
 
1273
+ #: settings/settings-edit.php:269
1274
+ msgid "Double Opt In Confirmation Link"
1275
  msgstr ""
1276
 
1277
+ #: settings/settings-edit.php:270 settings/settings-edit.php:313
1278
+ msgid "It is a readonly field and you are advised not to modify it."
1279
  msgstr ""
1280
 
1281
+ #: settings/settings-edit.php:276
1282
+ msgid ""
1283
+ "Text to display after Email is successfully subscribed from Double Opt In "
1284
+ "(confirmation) Email"
1285
  msgstr ""
1286
 
1287
+ #: settings/settings-edit.php:277
1288
  msgid ""
1289
+ "This text will be displayed once user clicks on email confirmation link from "
1290
+ "the Double Opt In (confirmation) Email."
1291
  msgstr ""
1292
 
1293
+ #: settings/settings-edit.php:284
1294
+ msgid "Subscriber Welcome Email"
1295
  msgstr ""
1296
 
1297
+ #: settings/settings-edit.php:285
1298
+ msgid ""
1299
+ "To send welcome email to subscriber after successful signup. This option "
1300
+ "must be set to YES."
1301
  msgstr ""
1302
 
1303
+ #: settings/settings-edit.php:289 settings/settings-edit.php:362
1304
+ #: subscribers/view-subscriber-sync.php:106
1305
  msgid "YES"
1306
  msgstr ""
1307
 
1308
+ #: settings/settings-edit.php:290 settings/settings-edit.php:363
1309
+ #: subscribers/view-subscriber-sync.php:105
1310
  msgid "NO"
1311
  msgstr ""
1312
 
1313
+ #: settings/settings-edit.php:296
1314
+ msgid "Subscriber Welcome Email Subject"
1315
  msgstr ""
1316
 
1317
+ #: settings/settings-edit.php:297
1318
  msgid ""
1319
+ "Enter the subject for the subscriber welcome email. This will be sent "
1320
+ "whenever a user's email is either confirmed (if Double Opt In) / subscribed "
1321
+ "(if Single Op In) successfully."
1322
  msgstr ""
1323
 
1324
+ #: settings/settings-edit.php:303
1325
+ msgid "Subscriber Welcome Email Content"
1326
  msgstr ""
1327
 
1328
+ #: settings/settings-edit.php:304
1329
  msgid ""
1330
+ "Enter the content for the subscriber welcome email whenever a user's email "
1331
+ "is either confirmed (if Double Opt In) / subscribed (if Single Opt In) "
1332
+ "successfully. (Keyword: ###NAME###)"
1333
+ msgstr ""
1334
+
1335
+ #: settings/settings-edit.php:312
1336
+ msgid "Unsubscribe Link"
1337
  msgstr ""
1338
 
1339
+ #: settings/settings-edit.php:319
1340
+ msgid "Unsubscribe Text in Email"
1341
  msgstr ""
1342
 
1343
+ #: settings/settings-edit.php:320
1344
  msgid ""
1345
+ "Enter the text for the unsubscribe link. This text is added with unsubscribe "
1346
+ "link in the emails. (Keyword: ###LINK###)"
1347
  msgstr ""
1348
 
1349
  #: settings/settings-edit.php:326
1350
+ msgid "Text to display after Email is unsubscribed"
1351
  msgstr ""
1352
 
1353
  #: settings/settings-edit.php:327
1354
+ msgid "This text will be displayed once user clicks on unsubscribe link."
 
 
 
 
 
 
1355
  msgstr ""
1356
 
1357
  #: settings/settings-edit.php:334
1358
+ msgid "Error in Confirmation Link"
 
 
1359
  msgstr ""
1360
 
1361
+ #: settings/settings-edit.php:335
1362
+ msgid ""
1363
+ "Default message to display if there is any issue while clicking on "
1364
+ "confirmation link from the Double Opt In (confirmation) Emails."
1365
  msgstr ""
1366
 
1367
  #: settings/settings-edit.php:341
1368
+ msgid "Error in Unsubscribe Link"
 
 
1369
  msgstr ""
1370
 
1371
+ #: settings/settings-edit.php:342
1372
+ msgid ""
1373
+ "Default message to display if there is any issue while clicking on "
1374
+ "unsubscribe link from the Emails."
1375
  msgstr ""
1376
 
1377
  #: settings/settings-edit.php:349
1378
+ msgid "Admin Email Addresses"
1379
  msgstr ""
1380
 
1381
+ #: settings/settings-edit.php:350
1382
+ msgid ""
1383
+ "Enter the admin email addresses that should receive notifications (separated "
1384
+ "by comma)."
1385
  msgstr ""
1386
 
1387
  #: settings/settings-edit.php:356
1388
+ msgid "Notify Admin about New Subscriber"
 
 
1389
  msgstr ""
1390
 
1391
+ #: settings/settings-edit.php:357
1392
+ msgid ""
1393
+ "To send admin email notifications for the new subscriber. This option must "
1394
+ "be set to YES."
1395
  msgstr ""
1396
 
1397
+ #: settings/settings-edit.php:369
1398
+ msgid "Admin Email Subject"
 
 
1399
  msgstr ""
1400
 
1401
  #: settings/settings-edit.php:370
1402
+ msgid ""
1403
+ "Enter the subject for the admin email. This will be sent whenever a new "
1404
+ "email is added and confirmed."
1405
  msgstr ""
1406
 
1407
+ #: settings/settings-edit.php:376
1408
+ msgid "Admin Email Content"
1409
  msgstr ""
1410
 
1411
  #: settings/settings-edit.php:377
1412
+ msgid ""
1413
+ "Enter the email content for the admin email. This will be sent whenever a "
1414
+ "new email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)"
1415
  msgstr ""
1416
 
1417
+ #: settings/settings-edit.php:384
1418
+ msgid "Sent Report Subject"
1419
  msgstr ""
1420
 
1421
  #: settings/settings-edit.php:385
1422
+ msgid ""
1423
+ "Enter the subject for the sent email report. It will be mailed to Admin."
1424
  msgstr ""
1425
 
1426
+ #: settings/settings-edit.php:391
1427
+ msgid "Sent Report Content"
1428
  msgstr ""
1429
 
1430
  #: settings/settings-edit.php:392
 
 
 
 
1431
  msgid ""
1432
+ "Enter the content for the sent mail report. It will be mailed to Admin. "
1433
+ "(Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
1434
  msgstr ""
1435
 
1436
+ #: settings/settings-edit.php:402
1437
  msgid "Save Settings"
1438
  msgstr ""
1439
 
1464
  msgid "Invalid Email."
1465
  msgstr ""
1466
 
1467
+ #: subscribers/view-subscriber-add.php:109
1468
+ #: subscribers/view-subscriber-edit.php:108
1469
+ #: subscribers/view-subscriber-export.php:26
1470
+ #: subscribers/view-subscriber-import.php:142
1471
+ #: subscribers/view-subscriber-show.php:241
1472
+ #: subscribers/view-subscriber-sync.php:88
1473
  msgid "Add New Subscriber"
1474
  msgstr ""
1475
 
1476
+ #: subscribers/view-subscriber-add.php:110
1477
+ #: subscribers/view-subscriber-edit.php:109
1478
+ #: subscribers/view-subscriber-export.php:27
1479
+ #: subscribers/view-subscriber-import.php:209
1480
+ #: subscribers/view-subscriber-show.php:242
1481
+ #: subscribers/view-subscriber-sync.php:89
1482
  msgid "Import"
1483
  msgstr ""
1484
 
1485
+ #: subscribers/view-subscriber-add.php:111
1486
+ #: subscribers/view-subscriber-edit.php:110
1487
+ #: subscribers/view-subscriber-import.php:143
1488
+ #: subscribers/view-subscriber-show.php:243
1489
+ #: subscribers/view-subscriber-sync.php:90
1490
  msgid "Export"
1491
  msgstr ""
1492
 
1493
+ #: subscribers/view-subscriber-add.php:112
1494
+ #: subscribers/view-subscriber-edit.php:111
1495
+ #: subscribers/view-subscriber-export.php:28
1496
+ #: subscribers/view-subscriber-import.php:144
1497
+ #: subscribers/view-subscriber-show.php:244
1498
+ #: subscribers/view-subscriber-sync.php:142
1499
  msgid "Sync"
1500
  msgstr ""
1501
 
1502
+ #: subscribers/view-subscriber-add.php:122
1503
  msgid "Enter Subscriber's Full name"
1504
  msgstr ""
1505
 
1506
+ #: subscribers/view-subscriber-add.php:132
1507
  msgid "Enter Subscriber's Email Address"
1508
  msgstr ""
1509
 
1510
+ #: subscribers/view-subscriber-add.php:142
1511
  msgid "Select Subscriber's Status"
1512
  msgstr ""
1513
 
1514
+ #: subscribers/view-subscriber-add.php:147
1515
+ #: subscribers/view-subscriber-edit.php:146
1516
+ #: subscribers/view-subscriber-import.php:174
1517
+ #: subscribers/view-subscriber-show.php:299
1518
+ #: subscribers/view-subscriber-show.php:326
1519
  msgid "Confirmed"
1520
  msgstr ""
1521
 
1522
+ #: subscribers/view-subscriber-add.php:148
1523
+ #: subscribers/view-subscriber-edit.php:147
1524
+ #: subscribers/view-subscriber-import.php:175
1525
+ #: subscribers/view-subscriber-show.php:300
1526
+ #: subscribers/view-subscriber-show.php:327
1527
  msgid "Unconfirmed"
1528
  msgstr ""
1529
 
1530
+ #: subscribers/view-subscriber-add.php:149
1531
+ #: subscribers/view-subscriber-edit.php:148
1532
+ #: subscribers/view-subscriber-import.php:176
1533
+ #: subscribers/view-subscriber-show.php:301
1534
+ #: subscribers/view-subscriber-show.php:328
1535
  msgid "Unsubscribed"
1536
  msgstr ""
1537
 
1538
+ #: subscribers/view-subscriber-add.php:157
1539
  msgid "Select (or) Create Group for Subscriber"
1540
  msgstr ""
1541
 
1542
+ #: subscribers/view-subscriber-add.php:173
1543
+ #: subscribers/view-subscriber-import.php:201
1544
  msgid "(or)"
1545
  msgstr ""
1546
 
1547
+ #: subscribers/view-subscriber-add.php:182
1548
  msgid "Add Subscriber"
1549
  msgstr ""
1550
 
1560
  msgid "Subscriber already exists for this group."
1561
  msgstr ""
1562
 
1563
+ #: subscribers/view-subscriber-edit.php:107
1564
  msgid "Edit Subscriber"
1565
  msgstr ""
1566
 
1567
+ #: subscribers/view-subscriber-edit.php:121
1568
+ msgid "Subscriber's Full Name"
1569
  msgstr ""
1570
 
1571
+ #: subscribers/view-subscriber-edit.php:131
1572
+ msgid "Subscriber's Email Address"
1573
  msgstr ""
1574
 
1575
+ #: subscribers/view-subscriber-edit.php:141
1576
  msgid "Update Subscriber's Status"
1577
  msgstr ""
1578
 
1579
+ #: subscribers/view-subscriber-edit.php:156
1580
  msgid "Update Subscriber's Group"
1581
  msgstr ""
1582
 
1583
+ #: subscribers/view-subscriber-export.php:25
1584
  msgid "Export Email Addresses"
1585
  msgstr ""
1586
 
1587
+ #: subscribers/view-subscriber-export.php:37
1588
+ #: subscribers/view-subscriber-export.php:45
1589
  msgid "Type of List to Export"
1590
  msgstr ""
1591
 
1592
+ #: subscribers/view-subscriber-export.php:38
1593
+ #: subscribers/view-subscriber-export.php:46
1594
  msgid "Total Emails"
1595
  msgstr ""
1596
 
1597
+ #: subscribers/view-subscriber-export.php:52
1598
  msgid "1"
1599
  msgstr ""
1600
 
1601
+ #: subscribers/view-subscriber-export.php:53
1602
  msgid "All Subscribers List"
1603
  msgstr ""
1604
 
1605
+ #: subscribers/view-subscriber-export.php:55
1606
+ #: subscribers/view-subscriber-export.php:61
1607
+ #: subscribers/view-subscriber-export.php:67
1608
  msgid "Click to Export in CSV"
1609
  msgstr ""
1610
 
1611
+ #: subscribers/view-subscriber-export.php:58
1612
  msgid "2"
1613
  msgstr ""
1614
 
1615
+ #: subscribers/view-subscriber-export.php:59
1616
  msgid "WordPress Registered Users"
1617
  msgstr ""
1618
 
1619
+ #: subscribers/view-subscriber-export.php:64
1620
  msgid "3"
1621
  msgstr ""
1622
 
1623
+ #: subscribers/view-subscriber-export.php:65
1624
  msgid "Commented Authors"
1625
  msgstr ""
1626
 
1656
  msgid "File Upload Failed."
1657
  msgstr ""
1658
 
1659
+ #: subscribers/view-subscriber-import.php:141
1660
  msgid "Import Email Addresses"
1661
  msgstr ""
1662
 
1663
+ #: subscribers/view-subscriber-import.php:154
1664
  msgid "Select CSV file"
1665
  msgstr ""
1666
 
1667
+ #: subscribers/view-subscriber-import.php:156
1668
  msgid "Check CSV structure "
1669
  msgstr ""
1670
 
1671
+ #: subscribers/view-subscriber-import.php:157
1672
  msgid "from here"
1673
  msgstr ""
1674
 
1675
+ #: subscribers/view-subscriber-import.php:168
1676
  msgid "Select Subscribers Email Status"
1677
  msgstr ""
1678
 
1679
+ #: subscribers/view-subscriber-import.php:184
1680
  msgid "Select (or) Create Group for Subscribers"
1681
  msgstr ""
1682
 
1727
  msgid "Please select New Status to update."
1728
  msgstr ""
1729
 
1730
+ #: subscribers/view-subscriber-show.php:276
 
 
 
 
1731
  msgid "Bulk Actions"
1732
  msgstr ""
1733
 
1734
+ #: subscribers/view-subscriber-show.php:278
1735
+ #: subscribers/view-subscriber-show.php:411
1736
  msgid "Resend Confirmation"
1737
  msgstr ""
1738
 
1739
+ #: subscribers/view-subscriber-show.php:280
1740
  msgid "Update Subscribers Status"
1741
  msgstr ""
1742
 
1743
+ #: subscribers/view-subscriber-show.php:283
1744
  msgid "Select Group"
1745
  msgstr ""
1746
 
1747
+ #: subscribers/view-subscriber-show.php:298
1748
+ #: subscribers/view-subscriber-show.php:325
1749
  msgid "All Status"
1750
  msgstr ""
1751
 
1752
+ #: subscribers/view-subscriber-show.php:304
1753
  msgid "Apply"
1754
  msgstr ""
1755
 
1756
+ #: subscribers/view-subscriber-show.php:308
1757
  msgid "All Groups"
1758
  msgstr ""
1759
 
1760
+ #: subscribers/view-subscriber-show.php:332
1761
  msgid "1 to 200 emails"
1762
  msgstr ""
1763
 
1764
+ #: subscribers/view-subscriber-show.php:333
1765
  msgid "201 to 400"
1766
  msgstr ""
1767
 
1768
+ #: subscribers/view-subscriber-show.php:334
1769
  msgid "401 to 600"
1770
  msgstr ""
1771
 
1772
+ #: subscribers/view-subscriber-show.php:335
1773
  msgid "601 to 800"
1774
  msgstr ""
1775
 
1776
+ #: subscribers/view-subscriber-show.php:336
1777
  msgid "801 to 1000"
1778
  msgstr ""
1779
 
1780
+ #: subscribers/view-subscriber-show.php:337
1781
  msgid "1001 to 2000"
1782
  msgstr ""
1783
 
1784
+ #: subscribers/view-subscriber-show.php:338
1785
  msgid "2001 to 5000"
1786
  msgstr ""
1787
 
1788
+ #: subscribers/view-subscriber-show.php:339
1789
  msgid "5001 to 10000"
1790
  msgstr ""
1791
 
1792
+ #: subscribers/view-subscriber-show.php:340
1793
  msgid "Display All"
1794
  msgstr ""
1795
 
1796
+ #: subscribers/view-subscriber-show.php:352
1797
+ #: subscribers/view-subscriber-show.php:366
1798
  msgid "Email Address"
1799
  msgstr ""
1800
 
1801
+ #: subscribers/view-subscriber-show.php:355
1802
+ #: subscribers/view-subscriber-show.php:369
1803
  msgid "Group"
1804
  msgstr ""
1805
 
1806
+ #: subscribers/view-subscriber-show.php:356
1807
+ #: subscribers/view-subscriber-show.php:370
1808
+ msgid "Signup Date<br>(YYYY-MM-DD)"
1809
  msgstr ""
1810
 
1811
  #: subscribers/view-subscriber-sync.php:35
1816
  msgid "Emails Successfully Synced."
1817
  msgstr ""
1818
 
1819
+ #: subscribers/view-subscriber-sync.php:87
1820
  msgid "Sync Email"
1821
  msgstr ""
1822
 
1823
+ #: subscribers/view-subscriber-sync.php:100
1824
  msgid "Sync newly registered users to subscribers list"
1825
  msgstr ""
1826
 
1827
+ #: subscribers/view-subscriber-sync.php:113
1828
  msgid "Select group to add newly registered users to"
1829
  msgstr ""
1830
 
1832
  msgid "Email Subscribers & Newsletters"
1833
  msgstr ""
1834
 
1835
+ #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.6) #-#-#-#-#
1836
  #. Plugin URI of the plugin/theme
1837
+ #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.6) #-#-#-#-#
1838
  #. Author URI of the plugin/theme
1839
  msgid "http://www.icegram.com/"
1840
  msgstr ""
notification/notification-add.php CHANGED
@@ -91,7 +91,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
91
 
92
  if ($es_error_found == FALSE && strlen($es_success) > 0) {
93
  ?>
94
- <div class="updated fade">
95
  <p><strong>
96
  <?php echo $es_success; ?>
97
  </strong></p>
@@ -100,13 +100,17 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
100
  }
101
  ?>
102
 
103
- <div class="form-wrap">
104
- <div id="icon-plugins" class="icon32"></div>
105
- <h2><?php echo __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ); ?></h2>
106
- <h3>
 
 
 
 
107
  <?php echo __( 'Add Notification', ES_TDOMAIN ); ?>
108
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
109
- </h3>
110
  <form name="es_form" method="post" action="#" onsubmit="return _es_submit()">
111
  <table class="form-table">
112
  <tbody>
@@ -135,7 +139,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
135
  <tr>
136
  <th scope="row">
137
  <label for="tag-link"><?php echo __( 'Select Notification Mail Subject', ES_TDOMAIN ); ?>
138
- <p><?php echo __( '(Use compose menu to create new)', ES_TDOMAIN ); ?></p>
139
  </label>
140
  </th>
141
  <td>
@@ -194,7 +198,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
194
  <tr>
195
  <th scope="row">
196
  <label for="tag-link"><?php echo __( 'Select your Custom Post Type', ES_TDOMAIN ); ?>
197
- <p><?php echo __( '(Optional)', ES_TDOMAIN ); ?></p>
198
  </label>
199
  </th>
200
  <td>
@@ -244,7 +248,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
244
  </table>
245
  <input type="hidden" name="es_form_submit" value="yes"/>
246
  <p class="submit">
247
- <input type="submit" class="button add-new-h2" value="<?php echo __( 'Save', ES_TDOMAIN ); ?>" />
248
  </p>
249
  <?php wp_nonce_field('es_form_add'); ?>
250
  </form>
91
 
92
  if ($es_error_found == FALSE && strlen($es_success) > 0) {
93
  ?>
94
+ <div class="notice notice-success is-dismissible">
95
  <p><strong>
96
  <?php echo $es_success; ?>
97
  </strong></p>
100
  }
101
  ?>
102
 
103
+ <style>
104
+ .form-table th {
105
+ width: 250px;
106
+ }
107
+ </style>
108
+
109
+ <div class="wrap">
110
+ <h2>
111
  <?php echo __( 'Add Notification', ES_TDOMAIN ); ?>
112
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
113
+ </h2>
114
  <form name="es_form" method="post" action="#" onsubmit="return _es_submit()">
115
  <table class="form-table">
116
  <tbody>
139
  <tr>
140
  <th scope="row">
141
  <label for="tag-link"><?php echo __( 'Select Notification Mail Subject', ES_TDOMAIN ); ?>
142
+ <p class="description"><?php echo __( '(Use compose menu to create new)', ES_TDOMAIN ); ?></p>
143
  </label>
144
  </th>
145
  <td>
198
  <tr>
199
  <th scope="row">
200
  <label for="tag-link"><?php echo __( 'Select your Custom Post Type', ES_TDOMAIN ); ?>
201
+ <p class="description"><?php echo __( '(Optional)', ES_TDOMAIN ); ?></p>
202
  </label>
203
  </th>
204
  <td>
248
  </table>
249
  <input type="hidden" name="es_form_submit" value="yes"/>
250
  <p class="submit">
251
+ <input type="submit" class="button-primary" value="<?php echo __( 'Save', ES_TDOMAIN ); ?>" />
252
  </p>
253
  <?php wp_nonce_field('es_form_add'); ?>
254
  </form>
notification/notification-edit.php CHANGED
@@ -100,7 +100,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
100
 
101
  if ($es_error_found == FALSE && strlen($es_success) > 0) {
102
  ?>
103
- <div class="updated fade">
104
  <p><strong>
105
  <?php echo $es_success; ?>
106
  </strong></p>
@@ -110,14 +110,18 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
110
 
111
  ?>
112
 
113
- <div class="form-wrap">
114
- <div id="icon-plugins" class="icon32"></div>
115
- <h2><?php echo __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ); ?></h2>
116
- <h3>
 
 
 
 
117
  <?php echo __( 'Edit Notification', ES_TDOMAIN ); ?>
118
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-notification&amp;ac=add"><?php echo __( 'Add New', ES_TDOMAIN ); ?></a>
119
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
120
- </h3>
121
  <form name="es_form" method="post" action="#" onsubmit="return _es_submit()">
122
  <table class="form-table">
123
  <tbody>
@@ -155,7 +159,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
155
  <th scope="row">
156
  <label for="tag-link">
157
  <?php echo __( 'Select Notification Mail Subject', ES_TDOMAIN ); ?>
158
- <p><?php echo __( '(Use compose menu to create new)', ES_TDOMAIN ); ?></p>
159
  </label>
160
  </th>
161
  <td>
@@ -226,7 +230,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
226
  <th scope="row">
227
  <label for="tag-link">
228
  <?php echo __( 'Select your Custom Post Type', ES_TDOMAIN ); ?>
229
- <p><?php echo __( '(Optional)', ES_TDOMAIN ); ?></p>
230
  </label>
231
  </th>
232
  <td>
@@ -284,7 +288,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
284
  <input type="hidden" name="es_form_submit" value="yes"/>
285
  <input type="hidden" name="es_note_id" id="es_note_id" value="<?php echo $form['es_note_id']; ?>"/>
286
  <p class="submit">
287
- <input type="submit" class="button add-new-h2" value="<?php echo __( 'Save', ES_TDOMAIN ); ?>" />
288
  </p>
289
  <?php wp_nonce_field('es_form_edit'); ?>
290
  </form>
100
 
101
  if ($es_error_found == FALSE && strlen($es_success) > 0) {
102
  ?>
103
+ <div class="notice notice-success is-dismissible">
104
  <p><strong>
105
  <?php echo $es_success; ?>
106
  </strong></p>
110
 
111
  ?>
112
 
113
+ <style>
114
+ .form-table th {
115
+ width: 250px;
116
+ }
117
+ </style>
118
+
119
+ <div class="wrap">
120
+ <h2>
121
  <?php echo __( 'Edit Notification', ES_TDOMAIN ); ?>
122
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-notification&amp;ac=add"><?php echo __( 'Add New', ES_TDOMAIN ); ?></a>
123
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
124
+ </h2>
125
  <form name="es_form" method="post" action="#" onsubmit="return _es_submit()">
126
  <table class="form-table">
127
  <tbody>
159
  <th scope="row">
160
  <label for="tag-link">
161
  <?php echo __( 'Select Notification Mail Subject', ES_TDOMAIN ); ?>
162
+ <p class="description"><?php echo __( '(Use compose menu to create new)', ES_TDOMAIN ); ?></p>
163
  </label>
164
  </th>
165
  <td>
230
  <th scope="row">
231
  <label for="tag-link">
232
  <?php echo __( 'Select your Custom Post Type', ES_TDOMAIN ); ?>
233
+ <p class="description"><?php echo __( '(Optional)', ES_TDOMAIN ); ?></p>
234
  </label>
235
  </th>
236
  <td>
288
  <input type="hidden" name="es_form_submit" value="yes"/>
289
  <input type="hidden" name="es_note_id" id="es_note_id" value="<?php echo $form['es_note_id']; ?>"/>
290
  <p class="submit">
291
+ <input type="submit" class="button-primary" value="<?php echo __( 'Save', ES_TDOMAIN ); ?>" />
292
  </p>
293
  <?php wp_nonce_field('es_form_edit'); ?>
294
  </form>
notification/notification-show.php CHANGED
@@ -36,7 +36,7 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
36
  }
37
 
38
  if ($es_success_msg == TRUE) {
39
- ?><div class="updated fade">
40
  <p><strong>
41
  <?php echo $es_success; ?>
42
  </strong></p>
@@ -47,13 +47,11 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
47
  ?>
48
 
49
  <div class="wrap">
50
- <div id="icon-plugins" class="icon32"></div>
51
- <h2><?php echo __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ); ?></h2>
52
- <h3>
53
- <?php echo __( 'Notification', ES_TDOMAIN ); ?>
54
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-notification&amp;ac=add"><?php echo __( 'Add New', ES_TDOMAIN ); ?></a>
55
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
56
- </h3>
57
  <div class="tool-box">
58
  <?php
59
  $myData = array();
36
  }
37
 
38
  if ($es_success_msg == TRUE) {
39
+ ?><div class="notice notice-success is-dismissible">
40
  <p><strong>
41
  <?php echo $es_success; ?>
42
  </strong></p>
47
  ?>
48
 
49
  <div class="wrap">
50
+ <h2 style="margin-bottom:1em;">
51
+ <?php echo __( 'Post Notifications', ES_TDOMAIN ); ?>
 
 
52
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-notification&amp;ac=add"><?php echo __( 'Add New', ES_TDOMAIN ); ?></a>
53
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
54
+ </h2>
55
  <div class="tool-box">
56
  <?php
57
  $myData = array();
query/db_subscriber.php CHANGED
@@ -104,13 +104,19 @@ class es_cls_dbquery {
104
  global $wpdb;
105
  $prefix = $wpdb->prefix;
106
  $result = 0;
 
107
  if (!filter_var($data["es_email_mail"], FILTER_VALIDATE_EMAIL)) {
108
  return "invalid";
109
  }
110
 
 
 
 
 
 
111
  $CurrentDate = date('Y-m-d G:i:s');
112
  if($action == "insert") {
113
- $sSql = "SELECT * FROM `".$prefix."es_emaillist` where es_email_mail='".$data["es_email_mail"]."' and es_email_group='".trim($data["es_email_group"])."'";
114
  $result = $wpdb->get_var($sSql);
115
  if ( $result > 0) {
116
  return "ext";
@@ -118,8 +124,8 @@ class es_cls_dbquery {
118
  $guid = es_cls_common::es_generate_guid(60);
119
  $sql = $wpdb->prepare("INSERT INTO `".$prefix."es_emaillist`
120
  (`es_email_name`,`es_email_mail`, `es_email_status`, `es_email_created`, `es_email_viewcount`, `es_email_group`, `es_email_guid`)
121
- VALUES(%s, %s, %s, %s, %d, %s, %s)", array(trim($data["es_email_name"]), trim($data["es_email_mail"]),
122
- trim($data["es_email_status"]), $CurrentDate, 0, trim($data["es_email_group"]), $guid));
123
  $wpdb->query($sql);
124
 
125
  /* Added from ES v3.1.5 - If subscribing via Rainmaker
@@ -135,7 +141,7 @@ class es_cls_dbquery {
135
 
136
  $es_settings = es_cls_settings::es_setting_select();
137
  $subscribers = array();
138
- $subscribers = self::es_view_subscriber_one($data["es_email_mail"]);
139
 
140
  if( did_action( 'rainmaker_post_lead' ) >= 1 ) {
141
  if ( (!empty($es_settings['es_c_optinoption'])) && ($es_settings['es_c_optinoption'] == 'Double Opt In') ) {
@@ -148,15 +154,15 @@ class es_cls_dbquery {
148
  return "sus";
149
  }
150
  } elseif($action == "update") {
151
- $sSql = "SELECT * FROM `".$prefix."es_emaillist` where es_email_mail='".$data["es_email_mail"]."'";
152
- $sSql = $sSql . " and es_email_group='".trim($data["es_email_group"])."' and es_email_id <> ".$data["es_email_id"];
153
  $result = $wpdb->get_var($sSql);
154
  if ( $result > 0) {
155
  return "ext";
156
  } else {
157
  $sSql = $wpdb->prepare("UPDATE `".$prefix."es_emaillist` SET `es_email_name` = %s, `es_email_mail` = %s,
158
- `es_email_status` = %s, `es_email_group` = %s WHERE es_email_id = %d LIMIT 1", array($data["es_email_name"], $data["es_email_mail"],
159
- $data["es_email_status"], $data["es_email_group"], $data["es_email_id"]));
160
  $wpdb->query($sSql);
161
  return "sus";
162
  }
@@ -264,10 +270,10 @@ class es_cls_dbquery {
264
  return "ext";
265
  } else {
266
  $action = "";
267
- $form['es_email_name'] = $data["es_email_name"];
268
- $form['es_email_mail'] = $data["es_email_mail"];
269
- $form['es_email_group'] = $data["es_email_group"];
270
- $form['es_email_status'] = $data["es_email_status"];
271
  $form['es_email_id'] = $arrRes[0]["es_email_id"];
272
  $action = es_cls_dbquery::es_view_subscriber_ins($form, $action = "update");
273
  return $action;
104
  global $wpdb;
105
  $prefix = $wpdb->prefix;
106
  $result = 0;
107
+
108
  if (!filter_var($data["es_email_mail"], FILTER_VALIDATE_EMAIL)) {
109
  return "invalid";
110
  }
111
 
112
+ $es_subscriber_name = sanitize_text_field($data["es_email_name"]);
113
+ $es_subscriber_status = sanitize_text_field($data["es_email_status"]);
114
+ $es_subscriber_group = sanitize_text_field($data["es_email_group"]);
115
+ $es_subscriber_email = sanitize_email($data["es_email_mail"]);
116
+
117
  $CurrentDate = date('Y-m-d G:i:s');
118
  if($action == "insert") {
119
+ $sSql = "SELECT * FROM `".$prefix."es_emaillist` where es_email_mail='".$es_subscriber_email."' and es_email_group='".trim($es_subscriber_group)."'";
120
  $result = $wpdb->get_var($sSql);
121
  if ( $result > 0) {
122
  return "ext";
124
  $guid = es_cls_common::es_generate_guid(60);
125
  $sql = $wpdb->prepare("INSERT INTO `".$prefix."es_emaillist`
126
  (`es_email_name`,`es_email_mail`, `es_email_status`, `es_email_created`, `es_email_viewcount`, `es_email_group`, `es_email_guid`)
127
+ VALUES(%s, %s, %s, %s, %d, %s, %s)", array(trim($es_subscriber_name), trim($es_subscriber_email),
128
+ trim($es_subscriber_status), $CurrentDate, 0, trim($es_subscriber_group), $guid));
129
  $wpdb->query($sql);
130
 
131
  /* Added from ES v3.1.5 - If subscribing via Rainmaker
141
 
142
  $es_settings = es_cls_settings::es_setting_select();
143
  $subscribers = array();
144
+ $subscribers = self::es_view_subscriber_one($es_subscriber_email);
145
 
146
  if( did_action( 'rainmaker_post_lead' ) >= 1 ) {
147
  if ( (!empty($es_settings['es_c_optinoption'])) && ($es_settings['es_c_optinoption'] == 'Double Opt In') ) {
154
  return "sus";
155
  }
156
  } elseif($action == "update") {
157
+ $sSql = "SELECT * FROM `".$prefix."es_emaillist` where es_email_mail='".$es_subscriber_email."'";
158
+ $sSql = $sSql . " and es_email_group='".trim($es_subscriber_group)."' and es_email_id != ".$data["es_email_id"];
159
  $result = $wpdb->get_var($sSql);
160
  if ( $result > 0) {
161
  return "ext";
162
  } else {
163
  $sSql = $wpdb->prepare("UPDATE `".$prefix."es_emaillist` SET `es_email_name` = %s, `es_email_mail` = %s,
164
+ `es_email_status` = %s, `es_email_group` = %s WHERE es_email_id = %d LIMIT 1", array($es_subscriber_name, $es_subscriber_email,
165
+ $es_subscriber_status, $es_subscriber_group, $data["es_email_id"]));
166
  $wpdb->query($sSql);
167
  return "sus";
168
  }
270
  return "ext";
271
  } else {
272
  $action = "";
273
+ $form['es_email_name'] = sanitize_text_field($data["es_email_name"]);
274
+ $form['es_email_mail'] = sanitize_email($data["es_email_mail"]);
275
+ $form['es_email_group'] = sanitize_text_field($data["es_email_group"]);
276
+ $form['es_email_status'] = sanitize_text_field($data["es_email_status"]);
277
  $form['es_email_id'] = $arrRes[0]["es_email_id"];
278
  $action = es_cls_dbquery::es_view_subscriber_ins($form, $action = "update");
279
  return $action;
readme.txt CHANGED
@@ -4,8 +4,8 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Author URI: http://www.icegram.com/
5
  Tags: email marketing, email newsletter form, email signup, email widget, newsletter, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
6
  Requires at least: 3.4
7
- Tested up to: 4.7
8
- Stable tag: 3.2.5
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.htmlss
11
 
@@ -196,7 +196,7 @@ Refer [here](http://www.icegram.com/documentation/es-how-to-add-subscription-box
196
 
197
  Refer [here](http://www.icegram.com/documentation/es-how-to-import-or-export-email-address-to-subscriber-list/).
198
 
199
- = 4. How to modify Opt-in mail, Welcome mail, Admin mail contents? =
200
 
201
  Refer [here](http://www.icegram.com/documentation/es-general-plugin-settings/).
202
 
@@ -212,11 +212,11 @@ Refer [here](http://www.icegram.com/documentation/es-how-to-add-unsubscribe-link
212
 
213
  Refer [here](http://www.icegram.com/documentation/es-what-are-static-templates-and-dynamic-templates/).
214
 
215
- = 8. How to Compose and Send Static Newsletter Mails =
216
 
217
  Refer [here](http://www.icegram.com/documentation/es-how-to-compose-and-send-static-newsletter-mails/).
218
 
219
- = 9. How to Configure and Send notification emails to subscribers when new posts are published? =
220
 
221
  Refer [here](http://www.icegram.com/documentation/es-how-to-configure-and-send-notification-emails-to-subscribers-when-new-posts-are-published/).
222
 
@@ -224,7 +224,7 @@ Refer [here](http://www.icegram.com/documentation/es-how-to-configure-and-send-n
224
 
225
  Refer [here](http://www.icegram.com/documentation/es-how-to-send-a-sample-new-post-notification-email-to-testgroup-myself/).
226
 
227
- = 11. How to check Sent mails? =
228
 
229
  Refer [here](http://www.icegram.com/documentation/es-how-to-check-sent-emails/).
230
 
@@ -244,7 +244,7 @@ Refer [here](http://www.icegram.com/documentation/es-how-to-show-subscribe-form-
244
 
245
  Refer [here](http://www.icegram.com/documentation/es-how-to-use-rainmakers-form-in-email-subscribers/).
246
 
247
- = 16. How to Schedule Cron mails/auto mails? =
248
 
249
  Refer [here](http://www.icegram.com/documentation/es-how-to-schedule-cron-emails/).
250
 
@@ -296,7 +296,7 @@ Use [Email Subscribers - Group Selector](https://wordpress.org/plugins/email-sub
296
 
297
  5. Send Mail Admin page
298
 
299
- 6. Cron Job Detailes Admin page (Schedule mail)
300
 
301
  7. Settings Admin page
302
 
@@ -308,6 +308,16 @@ Use [Email Subscribers - Group Selector](https://wordpress.org/plugins/email-sub
308
 
309
  == Changelog ==
310
 
 
 
 
 
 
 
 
 
 
 
311
  = 3.2.5 (05.01.2017) =
312
 
313
  * New: Added action 'es_message_head' for developers to insert custom CSS into subscribe and unsubscribe message
@@ -582,6 +592,16 @@ Use [Email Subscribers - Group Selector](https://wordpress.org/plugins/email-sub
582
 
583
  == Upgrade Notice ==
584
 
 
 
 
 
 
 
 
 
 
 
585
  = 3.2.5 (05.01.2017) =
586
 
587
  * New: Added action 'es_message_head' for developers to insert custom CSS into subscribe and unsubscribe message
4
  Author URI: http://www.icegram.com/
5
  Tags: email marketing, email newsletter form, email signup, email widget, newsletter, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
6
  Requires at least: 3.4
7
+ Tested up to: 4.7.1
8
+ Stable tag: 3.2.6
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.htmlss
11
 
196
 
197
  Refer [here](http://www.icegram.com/documentation/es-how-to-import-or-export-email-address-to-subscriber-list/).
198
 
199
+ = 4. How to modify the existing email content like Confirmation email, Welcome email, Admin emails? =
200
 
201
  Refer [here](http://www.icegram.com/documentation/es-general-plugin-settings/).
202
 
212
 
213
  Refer [here](http://www.icegram.com/documentation/es-what-are-static-templates-and-dynamic-templates/).
214
 
215
+ = 8. How to Compose and Send Newsletter Emails =
216
 
217
  Refer [here](http://www.icegram.com/documentation/es-how-to-compose-and-send-static-newsletter-mails/).
218
 
219
+ = 9. How to Configure and Send Post Notification emails to subscribers when new posts are published? =
220
 
221
  Refer [here](http://www.icegram.com/documentation/es-how-to-configure-and-send-notification-emails-to-subscribers-when-new-posts-are-published/).
222
 
224
 
225
  Refer [here](http://www.icegram.com/documentation/es-how-to-send-a-sample-new-post-notification-email-to-testgroup-myself/).
226
 
227
+ = 11. How to check Sent emails reports? =
228
 
229
  Refer [here](http://www.icegram.com/documentation/es-how-to-check-sent-emails/).
230
 
244
 
245
  Refer [here](http://www.icegram.com/documentation/es-how-to-use-rainmakers-form-in-email-subscribers/).
246
 
247
+ = 16. How to Schedule Cron Emails/auto mails? =
248
 
249
  Refer [here](http://www.icegram.com/documentation/es-how-to-schedule-cron-emails/).
250
 
296
 
297
  5. Send Mail Admin page
298
 
299
+ 6. Cron Job Detailes Admin page (Schedule email)
300
 
301
  7. Settings Admin page
302
 
308
 
309
  == Changelog ==
310
 
311
+ = 3.2.6 (18.01.2017) =
312
+
313
+ * New: WordPress 4.7.1 compatible
314
+ * New: Changed terminologies of admin menus for better accessibility
315
+ * Fix: Sanitize input fields while submitting subscribe form - Thanks to [Callibrator Pentester](http://hackholics.com/)
316
+ * Fix: Made all admin success notices to be dismissible
317
+ * Update: UI improvements
318
+ * Update: Text correction & improvements
319
+ * Update: POT file
320
+
321
  = 3.2.5 (05.01.2017) =
322
 
323
  * New: Added action 'es_message_head' for developers to insert custom CSS into subscribe and unsubscribe message
592
 
593
  == Upgrade Notice ==
594
 
595
+ = 3.2.6 (18.01.2017) =
596
+
597
+ * New: WordPress 4.7.1 compatible
598
+ * New: Changed terminologies of admin menus for better accessibility
599
+ * Fix: Sanitize input fields while submitting subscribe form - Thanks to [Callibrator Pentester](http://hackholics.com/)
600
+ * Fix: Made all admin success notices to be dismissible
601
+ * Update: UI improvements
602
+ * Update: Text correction & improvements
603
+ * Update: POT file
604
+
605
  = 3.2.5 (05.01.2017) =
606
 
607
  * New: Added action 'es_message_head' for developers to insert custom CSS into subscribe and unsubscribe message
roles/roles-add.php CHANGED
@@ -89,7 +89,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
89
 
90
  if ($es_error_found == FALSE && isset($es_success[0]) == TRUE) {
91
  ?>
92
- <div class="updated fade">
93
  <p><strong>
94
  <?php echo $es_success; ?>
95
  </strong></p>
@@ -98,14 +98,18 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
98
  }
99
  ?>
100
 
101
- <div class="form-wrap">
102
- <div id="icon-plugins" class="icon32"></div>
103
- <h2><?php echo __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ); ?></h2>
104
- <h3 class="title">
105
- <?php echo __( 'Roles and Capabilities', ES_TDOMAIN ); ?>
 
 
 
 
106
  <a class="add-new-h2" target="_blank" type="button" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
107
- </h3>
108
- <p>
109
  <?php echo __( 'Select user roles who can access following menus. Only Admin can change this.', ES_TDOMAIN ); ?>
110
  </p>
111
  <form name="form_roles" method="post" action="#">
@@ -137,7 +141,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
137
  </tr>
138
  <tr>
139
  <th scope="row">
140
- <label for="tag-image"><?php echo __( 'Notification Menu', ES_TDOMAIN ); ?></label>
141
  </th>
142
  <td>
143
  <select name="es_roles_notification" id="es_roles_notification">
@@ -149,7 +153,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
149
  </tr>
150
  <tr>
151
  <th scope="row">
152
- <label for="tag-image"><?php echo __( 'Send Email Menu/Cron Menu', ES_TDOMAIN ); ?></label>
153
  </th>
154
  <td>
155
  <select name="es_roles_sendmail" id="es_roles_sendmail">
@@ -161,7 +165,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
161
  </tr>
162
  <tr>
163
  <th scope="row">
164
- <label for="tag-image"><?php echo __( 'Settings Menu', ES_TDOMAIN ); ?></label>
165
  </th>
166
  <td>
167
  <select name="es_roles_setting" id="es_roles_setting">
@@ -173,7 +177,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
173
  </tr>
174
  <tr>
175
  <th scope="row">
176
- <label for="tag-image"><?php echo __( 'Sent Mails Menu', ES_TDOMAIN ); ?></label>
177
  </th>
178
  <td>
179
  <select name="es_roles_sentmail" id="es_roles_sentmail">
@@ -199,7 +203,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
199
  </table>
200
  <input type="hidden" name="es_form_submit" value="yes"/>
201
  <p style="padding-top:5px;">
202
- <input name="publish" lang="publish" class="button add-new-h2" value="<?php echo __( 'Save', ES_TDOMAIN ); ?>" type="submit" />
203
  </p>
204
  <div style="height:10px;"></div>
205
  <?php wp_nonce_field('es_roles_add'); ?>
89
 
90
  if ($es_error_found == FALSE && isset($es_success[0]) == TRUE) {
91
  ?>
92
+ <div class="notice notice-success is-dismissible">
93
  <p><strong>
94
  <?php echo $es_success; ?>
95
  </strong></p>
98
  }
99
  ?>
100
 
101
+ <style>
102
+ .form-table th {
103
+ width: 250px;
104
+ }
105
+ </style>
106
+
107
+ <div class="wrap">
108
+ <h2>
109
+ <?php echo __( 'User Roles', ES_TDOMAIN ); ?>
110
  <a class="add-new-h2" target="_blank" type="button" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
111
+ </h2>
112
+ <p class="description">
113
  <?php echo __( 'Select user roles who can access following menus. Only Admin can change this.', ES_TDOMAIN ); ?>
114
  </p>
115
  <form name="form_roles" method="post" action="#">
141
  </tr>
142
  <tr>
143
  <th scope="row">
144
+ <label for="tag-image"><?php echo __( 'Post Notifications Menu', ES_TDOMAIN ); ?></label>
145
  </th>
146
  <td>
147
  <select name="es_roles_notification" id="es_roles_notification">
153
  </tr>
154
  <tr>
155
  <th scope="row">
156
+ <label for="tag-image"><?php echo __( 'Newsletters + Cron Settings Menu', ES_TDOMAIN ); ?></label>
157
  </th>
158
  <td>
159
  <select name="es_roles_sendmail" id="es_roles_sendmail">
165
  </tr>
166
  <tr>
167
  <th scope="row">
168
+ <label for="tag-image"><?php echo __( 'Email Settings Menu', ES_TDOMAIN ); ?></label>
169
  </th>
170
  <td>
171
  <select name="es_roles_setting" id="es_roles_setting">
177
  </tr>
178
  <tr>
179
  <th scope="row">
180
+ <label for="tag-image"><?php echo __( 'Reports Menu', ES_TDOMAIN ); ?></label>
181
  </th>
182
  <td>
183
  <select name="es_roles_sentmail" id="es_roles_sentmail">
203
  </table>
204
  <input type="hidden" name="es_form_submit" value="yes"/>
205
  <p style="padding-top:5px;">
206
+ <input type="submit" name="publish" lang="publish" class="button-primary" value="<?php echo __( 'Save', ES_TDOMAIN ); ?>" />
207
  </p>
208
  <div style="height:10px;"></div>
209
  <?php wp_nonce_field('es_roles_add'); ?>
sendmail/sendmail.php CHANGED
@@ -57,7 +57,7 @@ if ($sendmailsubmit == 'yes') {
57
  $es_success_msg = TRUE;
58
  $es_success = __( 'Mail sent successfully. ', ES_TDOMAIN );
59
  if ($es_success_msg == TRUE) {
60
- ?><div class="updated fade">
61
  <p><strong>
62
  <?php echo $es_success; ?><a href="<?php echo ES_ADMINURL; ?>?page=es-sentmail"><?php echo __( 'Click here to check Statistics', ES_TDOMAIN ); ?></a>
63
  </strong></p>
@@ -88,116 +88,115 @@ if ($es_error_found == TRUE && isset($es_errors[0]) == TRUE) {
88
  </style>
89
 
90
  <div class="wrap">
91
- <div class="form-wrap">
92
- <div id="icon-plugins" class="icon32"></div>
93
- <h2><?php echo __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ); ?></h2>
94
- <h3>
95
- <?php echo __( 'Send Email', ES_TDOMAIN ); ?>
96
- <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
97
- </h3>
98
- <form name="es_form" method="post" action="#" onsubmit="return _es_submit()">
99
- <table class="form-table">
100
- <tbody>
101
- <tr>
102
- <th scope="row">
103
- <label for="tag-image">
104
- <?php echo __( 'Select Mail Subject from available list', ES_TDOMAIN ); ?>
105
- </label>
106
- </th>
107
- <td>
108
- <select name="es_templ_heading" id="es_templ_heading">
109
- <option value=''><?php echo __( 'Select', ES_TDOMAIN ); ?></option>
110
- <?php
111
- $subject = array();
112
- $subject = es_cls_compose::es_template_select_type($type = "Static Template");
113
- $thisselected = "";
114
- if(count($subject) > 0) {
115
- $i = 1;
116
- foreach ($subject as $sub) {
117
- if($sub["es_templ_id"] == $es_templ_heading) {
118
- $thisselected = "selected='selected'" ;
119
- }
120
- ?><option value='<?php echo $sub["es_templ_id"]; ?>' <?php echo $thisselected; ?>><?php echo esc_html(stripslashes($sub["es_templ_heading"])); ?></option><?php
121
- $thisselected = "";
122
  }
 
 
123
  }
124
- ?>
125
- </select>
126
- </td>
127
- </tr>
128
- <tr>
129
- <th scope="row">
130
- <label for="tag-image">
131
- <?php echo __( 'Select Mail Type', ES_TDOMAIN ); ?>
132
- </label>
133
- </th>
134
- <td>
135
- <select name="es_sent_type" id="es_sent_type">
136
- <option value=''><?php echo __( 'Select', ES_TDOMAIN ); ?></option>
137
- <option value='Instant Mail' <?php if($es_sent_type == 'Instant Mail') { echo "selected='selected'" ; } ?>><?php echo __( 'Send mail immediately', ES_TDOMAIN ); ?></option>
138
- <option value='Cron Mail' <?php if($es_sent_type == 'Cron Mail') { echo "selected='selected'" ; } ?>><?php echo __( 'Send mail via cron job', ES_TDOMAIN ); ?></option>
139
- </select>
140
- </td>
141
- </tr>
142
- <tr>
143
- <th scope="row">
144
- <label for="tag-image">
145
- <?php echo __( 'Select Subscribers group to Send Mail', ES_TDOMAIN ); ?>
146
- </label>
147
- </th>
148
- <td>
149
- <select name="es_email_group" id="es_email_group" onChange="_es_mailgroup(this.options[this.selectedIndex].value)">
150
- <option value=''><?php echo __( 'Select', ES_TDOMAIN ); ?></option>
151
- <?php
152
- $groups = array();
153
- $thisselected = "";
154
- $groups = es_cls_dbquery::es_view_subscriber_group();
155
- if(count($groups) > 0) {
156
- $i = 1;
157
- foreach ($groups as $group) {
158
- if(stripslashes($group["es_email_group"]) == stripslashes($es_email_group)) {
159
- $thisselected = "selected='selected'" ;
160
- }
161
- ?><option value="<?php echo esc_html($group["es_email_group"]); ?>" <?php echo $thisselected; ?>><?php echo stripslashes($group["es_email_group"]); ?></option><?php
162
- $thisselected = "";
163
  }
 
 
164
  }
165
- ?>
166
- </select>
167
- </td>
168
- </tr>
169
- <tr>
170
- <th scope="row">
171
- </th>
172
- <td>
173
- <?php
174
- $subscribers_count = array();
175
- $subscribers_count = es_cls_dbquery::es_subscriber_count_in_group($es_email_group);
176
- if( $subscribers_count == '0' ) {
177
- echo __( 'Recipients : 0 ', ES_TDOMAIN );
178
- } else {
179
- echo sprintf(__( 'Recipients : %s', ES_TDOMAIN ), $subscribers_count );
180
- }
181
- if( $subscribers_count > '100' && $es_sent_type == 'Instant Mail' ) {
182
- echo __( '<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend that you change above Mail Type to Cron and Send Mail via Cron Job.</strong><br>Click on Help for more information.', ES_TDOMAIN );
183
  }
184
  ?>
185
- </td>
186
- </tr>
187
- </tbody>
188
- </table>
189
- <?php $nonce = wp_create_nonce( 'sendmail-nonce' ); ?>
190
- <input type="hidden" name="sendmailsubmit" id="sendmailsubmit" value=""/>
191
- <input type="hidden" name="wp_create_nonce" id="wp_create_nonce" value="<?php echo $nonce; ?>"/>
192
- <?php if( $subscribers_count != 0 ) { ?>
193
- <input type="submit" name="Submit" class="send button add-new-h2" value="<?php echo __( 'Send Email', ES_TDOMAIN ); ?>" style="width:160px;" />&nbsp;
194
- <?php } else { ?>
195
- <input type="submit" name="Submit" disabled="disabled" class="send button add-new-h2" value="<?php echo __( 'Send Email', ES_TDOMAIN ); ?>" style="width:160px;" />&nbsp;
196
- <?php } ?>
197
- <?php wp_nonce_field('es_form_submit'); ?>
198
- <input type="button" class="button add-new-h2" onclick="_es_redirect()" value="<?php echo __( 'Reset', ES_TDOMAIN ); ?>" />
199
- </form>
200
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
201
  <div style="padding-top:10px;"></div>
202
  <p class="description"><?php echo ES_OFFICIAL; ?></p>
203
  </div>
57
  $es_success_msg = TRUE;
58
  $es_success = __( 'Mail sent successfully. ', ES_TDOMAIN );
59
  if ($es_success_msg == TRUE) {
60
+ ?><div class="notice notice-success is-dismissible">
61
  <p><strong>
62
  <?php echo $es_success; ?><a href="<?php echo ES_ADMINURL; ?>?page=es-sentmail"><?php echo __( 'Click here to check Statistics', ES_TDOMAIN ); ?></a>
63
  </strong></p>
88
  </style>
89
 
90
  <div class="wrap">
91
+ <h2>
92
+ <?php echo __( 'Newsletters', ES_TDOMAIN ); ?>
93
+ <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
94
+ </h2>
95
+ <p class="description">
96
+ <?php echo __( 'Use this to send newsletter emails to your subscribers.', ES_TDOMAIN ); ?>
97
+ </p>
98
+ <form name="es_form" method="post" action="#" onsubmit="return _es_submit()">
99
+ <table class="form-table">
100
+ <tbody>
101
+ <tr>
102
+ <th scope="row">
103
+ <label for="tag-image">
104
+ <?php echo __( 'Select Mail Subject from available list', ES_TDOMAIN ); ?>
105
+ </label>
106
+ </th>
107
+ <td>
108
+ <select name="es_templ_heading" id="es_templ_heading">
109
+ <option value=''><?php echo __( 'Select', ES_TDOMAIN ); ?></option>
110
+ <?php
111
+ $subject = array();
112
+ $subject = es_cls_compose::es_template_select_type($type = "Static Template");
113
+ $thisselected = "";
114
+ if(count($subject) > 0) {
115
+ $i = 1;
116
+ foreach ($subject as $sub) {
117
+ if($sub["es_templ_id"] == $es_templ_heading) {
118
+ $thisselected = "selected='selected'" ;
 
 
 
119
  }
120
+ ?><option value='<?php echo $sub["es_templ_id"]; ?>' <?php echo $thisselected; ?>><?php echo esc_html(stripslashes($sub["es_templ_heading"])); ?></option><?php
121
+ $thisselected = "";
122
  }
123
+ }
124
+ ?>
125
+ </select>
126
+ </td>
127
+ </tr>
128
+ <tr>
129
+ <th scope="row">
130
+ <label for="tag-image">
131
+ <?php echo __( 'Select Mail Type', ES_TDOMAIN ); ?>
132
+ </label>
133
+ </th>
134
+ <td>
135
+ <select name="es_sent_type" id="es_sent_type">
136
+ <option value=''><?php echo __( 'Select', ES_TDOMAIN ); ?></option>
137
+ <option value='Instant Mail' <?php if($es_sent_type == 'Instant Mail') { echo "selected='selected'" ; } ?>><?php echo __( 'Send mail immediately', ES_TDOMAIN ); ?></option>
138
+ <option value='Cron Mail' <?php if($es_sent_type == 'Cron Mail') { echo "selected='selected'" ; } ?>><?php echo __( 'Send mail via cron job', ES_TDOMAIN ); ?></option>
139
+ </select>
140
+ </td>
141
+ </tr>
142
+ <tr>
143
+ <th scope="row">
144
+ <label for="tag-image">
145
+ <?php echo __( 'Select Subscribers group to Send Mail', ES_TDOMAIN ); ?>
146
+ </label>
147
+ </th>
148
+ <td>
149
+ <select name="es_email_group" id="es_email_group" onChange="_es_mailgroup(this.options[this.selectedIndex].value)">
150
+ <option value=''><?php echo __( 'Select', ES_TDOMAIN ); ?></option>
151
+ <?php
152
+ $groups = array();
153
+ $thisselected = "";
154
+ $groups = es_cls_dbquery::es_view_subscriber_group();
155
+ if(count($groups) > 0) {
156
+ $i = 1;
157
+ foreach ($groups as $group) {
158
+ if(stripslashes($group["es_email_group"]) == stripslashes($es_email_group)) {
159
+ $thisselected = "selected='selected'" ;
 
 
160
  }
161
+ ?><option value="<?php echo esc_html($group["es_email_group"]); ?>" <?php echo $thisselected; ?>><?php echo stripslashes($group["es_email_group"]); ?></option><?php
162
+ $thisselected = "";
163
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
  }
165
  ?>
166
+ </select>
167
+ </td>
168
+ </tr>
169
+ <tr>
170
+ <th scope="row">
171
+ </th>
172
+ <td>
173
+ <?php
174
+ $subscribers_count = array();
175
+ $subscribers_count = es_cls_dbquery::es_subscriber_count_in_group($es_email_group);
176
+ if( $subscribers_count == '0' ) {
177
+ echo __( 'Recipients : 0 ', ES_TDOMAIN );
178
+ } else {
179
+ echo sprintf(__( 'Recipients : %s', ES_TDOMAIN ), $subscribers_count );
180
+ }
181
+ if( $subscribers_count > '100' && $es_sent_type == 'Instant Mail' ) {
182
+ echo __( '<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend that you change above Mail Type to Cron and Send Mail via Cron Job.</strong><br>Click on Help for more information.', ES_TDOMAIN );
183
+ }
184
+ ?>
185
+ </td>
186
+ </tr>
187
+ </tbody>
188
+ </table>
189
+ <?php $nonce = wp_create_nonce( 'sendmail-nonce' ); ?>
190
+ <input type="hidden" name="sendmailsubmit" id="sendmailsubmit" value=""/>
191
+ <input type="hidden" name="wp_create_nonce" id="wp_create_nonce" value="<?php echo $nonce; ?>"/>
192
+ <?php if( $subscribers_count != 0 ) { ?>
193
+ <input type="submit" name="Submit" class="send button-primary" style="width:160px;" value="<?php echo __( 'Send Email', ES_TDOMAIN ); ?>" />&nbsp;
194
+ <?php } else { ?>
195
+ <input type="submit" name="Submit" disabled="disabled" class="send button add-new-h2" style="width:160px;" value="<?php echo __( 'Send Email', ES_TDOMAIN ); ?>" />&nbsp;
196
+ <?php } ?>
197
+ <?php wp_nonce_field('es_form_submit'); ?>
198
+ <input type="button" class="button-primary" onclick="_es_redirect()" value="<?php echo __( 'Reset', ES_TDOMAIN ); ?>" />
199
+ </form>
200
  <div style="padding-top:10px;"></div>
201
  <p class="description"><?php echo ES_OFFICIAL; ?></p>
202
  </div>
sentmail/deliverreport-show.php CHANGED
@@ -55,12 +55,10 @@ if ($sentguid == '') {
55
  ?>
56
 
57
  <div class="wrap">
58
- <div id="icon-plugins" class="icon32"></div>
59
- <h2><?php echo __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ); ?></h2>
60
- <h3>
61
  <?php echo __( 'Delivery Report', ES_TDOMAIN ); ?>
62
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
63
- </h3>
64
  <div class="tablenav">
65
  <div class="alignright" style="padding-bottom:10px;"><?php echo $page_links; ?></div>
66
  </div>
@@ -119,7 +117,6 @@ if ($sentguid == '') {
119
  </table>
120
  <?php wp_nonce_field('es_form_show'); ?>
121
  <input type="hidden" name="frm_es_display" value="yes"/>
122
- <div style="padding-top:10px;"></div>
123
  <div class="tablenav">
124
  <div class="alignright">
125
  <?php echo $page_links; ?>
55
  ?>
56
 
57
  <div class="wrap">
58
+ <h2>
 
 
59
  <?php echo __( 'Delivery Report', ES_TDOMAIN ); ?>
60
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
61
+ </h2>
62
  <div class="tablenav">
63
  <div class="alignright" style="padding-bottom:10px;"><?php echo $page_links; ?></div>
64
  </div>
117
  </table>
118
  <?php wp_nonce_field('es_form_show'); ?>
119
  <input type="hidden" name="frm_es_display" value="yes"/>
 
120
  <div class="tablenav">
121
  <div class="alignright">
122
  <?php echo $page_links; ?>
sentmail/sentmail-preview.php CHANGED
@@ -22,16 +22,14 @@ if ($result != '1') {
22
  ?>
23
 
24
  <div class="wrap">
25
- <div id="icon-plugins" class="icon32"></div>
26
- <h2><?php echo __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ); ?></h2>
27
- <h3>
28
  <?php echo __( 'Preview Mail', ES_TDOMAIN ); ?>
29
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
30
- </h3>
31
  <div class="tool-box">
32
  <div style="padding:15px;background-color:#FFFFFF;">
33
  <?php
34
- $preview = array();
35
  $preview = es_cls_sentmail::es_sentmail_select($did, 0, 0);
36
  $preview = str_replace('###NAME###', "Username", $preview);
37
  $preview = str_replace('###EMAIL###', "Useremail", $preview);
@@ -40,7 +38,7 @@ if ($result != '1') {
40
  </div>
41
  <div class="tablenav">
42
  <h2>
43
- <a class="button add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-sentmail&pagenum=<?php echo $pagenum; ?>"><?php echo __( 'Back', ES_TDOMAIN ); ?></a>
44
  </h2>
45
  </div>
46
  <div style="height:10px;"></div>
22
  ?>
23
 
24
  <div class="wrap">
25
+ <h2 style="margin-bottom:1em;">
 
 
26
  <?php echo __( 'Preview Mail', ES_TDOMAIN ); ?>
27
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
28
+ </h2>
29
  <div class="tool-box">
30
  <div style="padding:15px;background-color:#FFFFFF;">
31
  <?php
32
+ $preview = array();
33
  $preview = es_cls_sentmail::es_sentmail_select($did, 0, 0);
34
  $preview = str_replace('###NAME###', "Username", $preview);
35
  $preview = str_replace('###EMAIL###', "Useremail", $preview);
38
  </div>
39
  <div class="tablenav">
40
  <h2>
41
+ <a class="button-primary" href="<?php echo ES_ADMINURL; ?>?page=es-sentmail&pagenum=<?php echo $pagenum; ?>"><?php echo __( 'Back', ES_TDOMAIN ); ?></a>
42
  </h2>
43
  </div>
44
  <div style="height:10px;"></div>
sentmail/sentmail-show.php CHANGED
@@ -42,7 +42,7 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
42
  $es_success = __( 'Successfully deleted all reports except latest 10.', ES_TDOMAIN );
43
  }
44
  if ($es_success_msg == TRUE) {
45
- ?><div class="updated fade">
46
  <p><strong>
47
  <?php echo $es_success; ?>
48
  </strong></p>
@@ -91,12 +91,13 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
91
  ?>
92
 
93
  <div class="wrap">
94
- <div id="icon-plugins" class="icon32"></div>
95
- <h2><?php echo __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ); ?></h2>
96
- <h3>
97
- <?php echo __( 'Sent Mails', ES_TDOMAIN ); ?>
98
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
99
- </h3>
 
 
 
100
  <div class="tablenav">
101
  <div class="alignright" style="padding-bottom:10px;"><?php echo $page_links; ?></div>
102
  </div>
@@ -172,13 +173,13 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
172
  <div class="tablenav" style="padding-top:10px;">
173
  <div class="alignleft">
174
  <input type="hidden" name="action" id="action" value="optimize-table">
175
- <input type="submit" value="<?php echo __( 'Optimize Table & Delete Records', ES_TDOMAIN ); ?>" class="button action" id="doaction" name="">
176
  </div>
177
  <div class="alignright"><?php echo $page_links; ?></div>
178
  </div>
179
  <input type="hidden" name="frm_es_bulkaction" value=""/>
180
  </form>
181
- <?php if ($fulltotal > 30 ) { ?>
182
  <div class="error fade">
183
  <p>
184
  <?php echo __( 'Note: Please click on <strong>Optimize Table & Delete Records</strong> button to delete all reports except latest 10.', ES_TDOMAIN ); ?>
42
  $es_success = __( 'Successfully deleted all reports except latest 10.', ES_TDOMAIN );
43
  }
44
  if ($es_success_msg == TRUE) {
45
+ ?><div class="notice notice-success is-dismissible">
46
  <p><strong>
47
  <?php echo $es_success; ?>
48
  </strong></p>
91
  ?>
92
 
93
  <div class="wrap">
94
+ <h2>
95
+ <?php echo __( 'Reports', ES_TDOMAIN ); ?>
 
 
96
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
97
+ </h2>
98
+ <p class="description">
99
+ <?php echo __( 'It will show reports for all Newsletters & Post Notification emails sent.', ES_TDOMAIN ); ?>
100
+ </p>
101
  <div class="tablenav">
102
  <div class="alignright" style="padding-bottom:10px;"><?php echo $page_links; ?></div>
103
  </div>
173
  <div class="tablenav" style="padding-top:10px;">
174
  <div class="alignleft">
175
  <input type="hidden" name="action" id="action" value="optimize-table">
176
+ <input type="submit" value="<?php echo __( 'Optimize Table & Delete Records', ES_TDOMAIN ); ?>" class="button-primary action" id="doaction" name="">
177
  </div>
178
  <div class="alignright"><?php echo $page_links; ?></div>
179
  </div>
180
  <input type="hidden" name="frm_es_bulkaction" value=""/>
181
  </form>
182
+ <?php if ( $fulltotal > 30 ) { ?>
183
  <div class="error fade">
184
  <p>
185
  <?php echo __( 'Note: Please click on <strong>Optimize Table & Delete Records</strong> button to delete all reports except latest 10.', ES_TDOMAIN ); ?>
settings/setting-sync.php CHANGED
@@ -14,7 +14,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
14
 
15
  $es_success = __( 'Table sync completed successfully.', ES_TDOMAIN );
16
  es_cls_registerhook::es_synctables();
17
- ?><div class="updated fade">
18
  <p><strong>
19
  <?php echo $es_success; ?>
20
  </strong></p>
@@ -29,7 +29,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
29
  <input type="hidden" name="es_form_submit" value="yes"/>
30
  <div style="padding-top:5px;"></div>
31
  <p>
32
- <input type="submit" name="publish" lang="publish" class="button add-new-h2" value="<?php echo __( 'Click to sync tables', ES_TDOMAIN ); ?>" />
33
  </p>
34
  <?php wp_nonce_field('es_form_sync'); ?>
35
  </form>
14
 
15
  $es_success = __( 'Table sync completed successfully.', ES_TDOMAIN );
16
  es_cls_registerhook::es_synctables();
17
+ ?><div class="notice notice-success is-dismissible">
18
  <p><strong>
19
  <?php echo $es_success; ?>
20
  </strong></p>
29
  <input type="hidden" name="es_form_submit" value="yes"/>
30
  <div style="padding-top:5px;"></div>
31
  <p>
32
+ <input type="submit" name="publish" lang="publish" class="button-primary" value="<?php echo __( 'Click to sync tables', ES_TDOMAIN ); ?>" />
33
  </p>
34
  <?php wp_nonce_field('es_form_sync'); ?>
35
  </form>
settings/settings-edit.php CHANGED
@@ -177,7 +177,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
177
  </div><?php
178
  }
179
  if ($es_error_found == FALSE && strlen($es_success) > 0) {
180
- ?><div class="updated fade">
181
  <p><strong>
182
  <?php echo $es_success; ?>
183
  </strong></p>
@@ -187,25 +187,23 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
187
 
188
  <style>
189
  .form-table th {
190
- width: 450px;
191
  }
192
  </style>
193
 
194
- <div class="form-wrap">
195
- <div id="icon-plugins" class="icon32"></div>
196
- <h2><?php echo __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ); ?></h2>
197
- <h3>
198
- <?php echo __( 'Settings', ES_TDOMAIN ); ?>
199
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
200
- </h3>
201
  <form name="es_form" method="post" action="#" onsubmit="return _es_submit()">
202
  <table class="form-table">
203
  <tbody>
204
  <tr>
205
  <th scope="row">
206
- <label for="elp"><?php echo __( 'Sender of notifications', ES_TDOMAIN ); ?>
207
- <p class="description"><?php echo __( 'Choose a FROM name and FROM email address for all notifications emails from this plugin.', ES_TDOMAIN ); ?></p>
208
  </label>
 
209
  </th>
210
  <td>
211
  <input name="es_c_fromname" type="text" id="es_c_fromname" value="<?php echo stripslashes($form['es_c_fromname']); ?>" maxlength="225" />
@@ -214,8 +212,8 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
214
  </tr>
215
  <tr>
216
  <th scope="row">
217
- <label for="elp"><?php echo __( 'Mail type', ES_TDOMAIN ); ?>
218
- <p class="description"><?php echo __( 'Option 1 & 2 is to send mails with default Wordpress method wp_mail(). Option 3 & 4 is to send mails with PHP method mail()', ES_TDOMAIN ); ?></p></label>
219
  </th>
220
  <td>
221
  <select name="es_c_mailtype" id="es_c_mailtype">
@@ -229,8 +227,8 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
229
  <!-------------------------------------------------------------------------------->
230
  <tr>
231
  <th scope="row">
232
- <label for="elp"><?php echo __( 'Opt-in option', ES_TDOMAIN ); ?>
233
- <p class="description"><?php echo __( 'Double Opt In, means subscribers need to confirm their email address by an activation link sent them on a activation email message. Single Opt In, means subscribers do not need to confirm their email address.', ES_TDOMAIN ); ?></p></label>
234
  </th>
235
  <td>
236
  <select name="es_c_optinoption" id="es_c_optinoption">
@@ -242,7 +240,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
242
  <tr>
243
  <th scope="row">
244
  <label for="elp"><?php echo __( 'Image Size', ES_TDOMAIN ); ?>
245
- <p class="description"><?php echo __( 'Select image size for ###POSTIMAGE### to be shown in post notification email', ES_TDOMAIN ); ?></p></label>
246
  </th>
247
  <td>
248
  <select name="es_c_post_image_size" id="es_c_post_image_size">
@@ -254,37 +252,37 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
254
  </tr>
255
  <tr>
256
  <th scope="row">
257
- <label for="elp"><?php echo __( 'Opt-in mail subject (Confirmation mail)', ES_TDOMAIN ); ?>
258
- <p class="description"><?php echo __( 'Enter the subject for Double Opt In mail. This will send whenever subscriber added email into our database.', ES_TDOMAIN ); ?></p></label>
259
  </th>
260
  <td><input name="es_c_optinsubject" type="text" id="es_c_optinsubject" value="<?php echo esc_html(stripslashes($form['es_c_optinsubject'])); ?>" size="60" maxlength="225" /></td>
261
  </tr>
262
  <tr>
263
  <th scope="row">
264
- <label for="elp"><?php _e('Opt-in mail content (Confirmation mail)', ES_TDOMAIN); ?>
265
- <p class="description"><?php _e('Enter the content for Double Opt In mail. This will send whenever subscriber added email into our database.', ES_TDOMAIN); ?> (Keyword: ###NAME###)</p></label>
266
  </th>
267
  <td><textarea size="100" id="es_c_optincontent" rows="10" cols="58" name="es_c_optincontent"><?php echo esc_html(stripslashes($form['es_c_optincontent'])); ?></textarea></td>
268
  </tr>
269
  <tr>
270
  <th scope="row">
271
- <label for="elp"><?php echo __( 'Opt-in link (Confirmation link)', ES_TDOMAIN ); ?><p class="description">
272
- <?php echo __( 'Double Opt In confirmation link. You no need to change this value.', ES_TDOMAIN ); ?></p></label>
273
  </th>
274
  <td><input name="es_c_optinlink" type="text" id="es_c_optinlink" value="<?php echo esc_html(stripslashes($form['es_c_optinlink'])); ?>" size="60" maxlength="225" readonly /></td>
275
  </tr>
276
  <tr>
277
  <th scope="row">
278
- <label for="elp"><?php echo __( 'Text to display after email subscribed successfully', ES_TDOMAIN ); ?>
279
- <p class="description"><?php echo __( 'This text will display once user clicked email confirmation link from opt-in (confirmation) email content.', ES_TDOMAIN ); ?></p></label>
280
  </th>
281
  <td><textarea size="100" id="es_c_subhtml" rows="4" cols="58" name="es_c_subhtml"><?php echo esc_html(stripslashes($form['es_c_subhtml'])); ?></textarea></td>
282
  </tr>
283
  <!-------------------------------------------------------------------------------->
284
  <tr>
285
  <th scope="row">
286
- <label for="elp"><?php echo __( 'Subscriber welcome email', ES_TDOMAIN ); ?>
287
- <p class="description"><?php echo __( 'To send welcome mail to subscriber, This option must be set to YES.', ES_TDOMAIN ); ?></p></label>
288
  </th>
289
  <td>
290
  <select name="es_c_usermailoption" id="es_c_usermailoption">
@@ -295,15 +293,15 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
295
  </tr>
296
  <tr>
297
  <th scope="row">
298
- <label for="elp"><?php echo __( 'Welcome mail subject', ES_TDOMAIN ); ?>
299
- <p class="description"><?php echo __( 'Enter the subject for subscriber welcome mail. This will send whenever email subscribed (confirmed) successfully.', ES_TDOMAIN ); ?></p></label>
300
  </th>
301
  <td><input name="es_c_usermailsubject" type="text" id="es_c_usermailsubject" value="<?php echo esc_html(stripslashes($form['es_c_usermailsubject'])); ?>" size="60" maxlength="225" /></td>
302
  </tr>
303
  <tr>
304
  <th scope="row">
305
- <label for="elp"><?php echo __( 'Subscriber welcome mail content', ES_TDOMAIN ); ?>
306
- <p class="description"><?php echo __( 'Enter the content for subscriber welcome mail. This will send whenever email subscribed (confirmed) successfully. (Keyword: ###NAME###)', ES_TDOMAIN ); ?></p>
307
  </label>
308
  </th>
309
  <td><textarea size="100" id="es_c_usermailcontant" rows="10" cols="58" name="es_c_usermailcontant"><?php echo esc_html(stripslashes($form['es_c_usermailcontant'])); ?></textarea></td>
@@ -311,86 +309,87 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
311
  <!-------------------------------------------------------------------------------->
312
  <tr>
313
  <th scope="row">
314
- <label for="elp"><?php echo __( 'Mail to admin', ES_TDOMAIN ); ?>
315
- <p class="description"><?php echo __( 'To send admin notifications for new subscriber, This option must be set to YES.', ES_TDOMAIN ); ?></p></label>
316
  </th>
317
- <td>
318
- <select name="es_c_adminmailoption" id="es_c_adminmailoption">
319
- <option value='YES' <?php if($form['es_c_adminmailoption'] == 'YES') { echo 'selected' ; } ?>><?php echo __( 'YES', ES_TDOMAIN ); ?></option>
320
- <option value='NO' <?php if($form['es_c_adminmailoption'] == 'NO') { echo 'selected' ; } ?>><?php echo __( 'NO', ES_TDOMAIN ); ?></option>
321
- </select>
322
- </td>
323
  </tr>
324
  <tr>
325
  <th scope="row">
326
- <label for="elp"><?php echo __( 'Admin email addresses', ES_TDOMAIN ); ?>
327
- <p class="description"><?php echo __( 'Enter the admin email addresses that should receive notifications (separate by comma).', ES_TDOMAIN ); ?></p></label>
328
  </th>
329
- <td><input name="es_c_adminemail" type="text" id="es_c_adminemail" value="<?php echo esc_html(stripslashes($form['es_c_adminemail'])); ?>" size="60" maxlength="225" /></td>
330
- </tr>
331
  <tr>
332
  <th scope="row">
333
- <label for="elp"><?php echo __( 'Admin mail subject', ES_TDOMAIN ); ?>
334
- <p class="description"><?php echo __( 'Enter the subject for admin mail. This will send whenever new email added and confirmed into our database.', ES_TDOMAIN ); ?></p></label>
335
  </th>
336
- <td><input name="es_c_adminmailsubject" type="text" id="es_c_adminmailsubject" value="<?php echo esc_html(stripslashes($form['es_c_adminmailsubject'])); ?>" size="60" maxlength="225" /></td>
337
  </tr>
 
338
  <tr>
339
  <th scope="row">
340
- <label for="elp"><?php echo __( 'Admin mail content', ES_TDOMAIN ); ?>
341
- <p class="description"><?php echo __( 'Enter the mail content for admin. This will send whenever new email added and confirmed into our database. (Keyword: ###NAME###, ###EMAIL###)', ES_TDOMAIN ); ?></p></label>
342
  </th>
343
- <td><textarea size="100" id="es_c_adminmailcontant" rows="10" cols="58" name="es_c_adminmailcontant"><?php echo esc_html(stripslashes($form['es_c_adminmailcontant'])); ?></textarea></td>
344
  </tr>
345
- <!-------------------------------------------------------------------------------->
346
  <tr>
347
  <th scope="row">
348
- <label for="elp"><?php echo __( 'Unsubscribe link', ES_TDOMAIN ); ?>
349
- <p class="description"><?php echo __( 'Unsubscribe link. You no need to change this value.', ES_TDOMAIN ); ?></p></label>
350
  </th>
351
- <td><input name="es_c_unsublink" type="text" id="es_c_unsublink" value="<?php echo esc_html(stripslashes($form['es_c_unsublink'])); ?>" size="60" maxlength="225" readonly /></td>
352
  </tr>
 
353
  <tr>
354
  <th scope="row">
355
- <label for="elp"><?php echo __( 'Unsubscribe text in mail', ES_TDOMAIN ); ?>
356
- <p class="description"><?php echo __( 'Enter the text for unsubscribe link. This text is to add unsubscribe link with newsletter. (Keyword: ###LINK###)', ES_TDOMAIN ); ?></p></label>
357
  </th>
358
- <td><textarea size="100" id="es_c_unsubtext" rows="4" cols="58" name="es_c_unsubtext"><?php echo esc_html(stripslashes($form['es_c_unsubtext'])); ?></textarea></td>
359
- </tr>
360
  <tr>
361
  <th scope="row">
362
- <label for="elp"><?php echo __( 'Text to display after email unsubscribed', ES_TDOMAIN ); ?>
363
- <p class="description"><?php echo __( 'This text will display once user clicked unsubscribed link from our newsletter.', ES_TDOMAIN ); ?></p></label>
 
364
  </th>
365
- <td><textarea size="100" id="es_c_unsubhtml" rows="4" cols="58" name="es_c_unsubhtml"><?php echo esc_html(stripslashes($form['es_c_unsubhtml'])); ?></textarea></td>
 
 
 
 
 
366
  </tr>
367
- <!-------------------------------------------------------------------------------->
368
  <tr>
369
  <th scope="row">
370
- <label for="elp"><?php echo __( 'Message 1', ES_TDOMAIN ); ?>
371
- <p class="description"><?php echo __( 'Default message to display if any issue on confirmation link.', ES_TDOMAIN ); ?></p></label>
372
  </th>
373
- <td><textarea size="100" id="es_c_message1" rows="4" cols="58" name="es_c_message1"><?php echo esc_html(stripslashes($form['es_c_message1'])); ?></textarea></td>
374
  </tr>
375
  <tr>
376
  <th scope="row">
377
- <label for="elp"><?php echo __( 'Message 2', ES_TDOMAIN ); ?>
378
- <p class="description"><?php echo __( 'Default message to display if any issue on unsubscribe link.', ES_TDOMAIN ); ?></p></label>
379
  </th>
380
- <td><textarea size="100" id="es_c_message2" rows="4" cols="58" name="es_c_message2"><?php echo esc_html(stripslashes($form['es_c_message2'])); ?></textarea></td>
381
  </tr>
382
  <!-------------------------------------------------------------------------------->
383
  <tr>
384
  <th scope="row">
385
- <label for="elp"><?php echo __( 'Sent report subject', ES_TDOMAIN ); ?>
386
- <p class="description"><?php echo __( 'Mail subject for sent mail report.', ES_TDOMAIN ); ?></p></label>
387
  </th>
388
  <td><input name="es_c_sentreport_subject" type="text" id="es_c_sentreport_subject" value="<?php echo esc_html(stripslashes($form['es_c_sentreport_subject'])); ?>" size="60" maxlength="225" /></td>
389
  </tr>
390
  <tr>
391
  <th scope="row">
392
- <label for="elp"><?php echo __( 'Sent report content', ES_TDOMAIN ); ?>
393
- <p class="description"><?php echo __( 'Mail content for sent mail report. (Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)', ES_TDOMAIN ); ?></p></label>
394
  </th>
395
  <td><textarea size="100" id="es_c_sentreport" rows="8" cols="58" name="es_c_sentreport"><?php echo esc_html(stripslashes($form['es_c_sentreport'])); ?></textarea></td>
396
  </tr>
@@ -400,7 +399,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
400
  <input type="hidden" name="es_form_submit" value="yes"/>
401
  <input type="hidden" name="es_c_id" id="es_c_id" value="<?php echo $form['es_c_id']; ?>"/>
402
  <p style="padding-top:10px;">
403
- <input type="submit" name="publish" class="button add-new-h2" value="<?php echo __( 'Save Settings', ES_TDOMAIN ); ?>" />
404
  </p>
405
  <?php wp_nonce_field('es_form_edit'); ?>
406
  </form>
177
  </div><?php
178
  }
179
  if ($es_error_found == FALSE && strlen($es_success) > 0) {
180
+ ?><div class="notice notice-success is-dismissible">
181
  <p><strong>
182
  <?php echo $es_success; ?>
183
  </strong></p>
187
 
188
  <style>
189
  .form-table th {
190
+ width: 450px;
191
  }
192
  </style>
193
 
194
+ <div class="wrap">
195
+ <h2>
196
+ <?php echo __( 'Email Settings', ES_TDOMAIN ); ?>
 
 
197
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
198
+ </h2>
199
  <form name="es_form" method="post" action="#" onsubmit="return _es_submit()">
200
  <table class="form-table">
201
  <tbody>
202
  <tr>
203
  <th scope="row">
204
+ <label for="elp"><?php echo __( 'Sender of Notifications', ES_TDOMAIN ); ?>
 
205
  </label>
206
+ <p class="description"><?php echo __( 'Choose a FROM name and FROM email address for all the emails to be sent from this plugin.', ES_TDOMAIN ); ?></p>
207
  </th>
208
  <td>
209
  <input name="es_c_fromname" type="text" id="es_c_fromname" value="<?php echo stripslashes($form['es_c_fromname']); ?>" maxlength="225" />
212
  </tr>
213
  <tr>
214
  <th scope="row">
215
+ <label for="elp"><?php echo __( 'Mail Type', ES_TDOMAIN ); ?>
216
+ <p class="description"><?php echo __( 'Option 1 & 2 is to send mails with default Wordpress method wp_mail(). Option 3 & 4 is to send mails with PHP method mail().', ES_TDOMAIN ); ?></p></label>
217
  </th>
218
  <td>
219
  <select name="es_c_mailtype" id="es_c_mailtype">
227
  <!-------------------------------------------------------------------------------->
228
  <tr>
229
  <th scope="row">
230
+ <label for="elp"><?php echo __( 'Opt-in Option', ES_TDOMAIN ); ?>
231
+ <p class="description"><?php echo __( 'Double Opt In means subscribers need to confirm their email address by an activation link sent them on a activation email message.<br />Single Opt In means subscribers do not need to confirm their email address.', ES_TDOMAIN ); ?></p></label>
232
  </th>
233
  <td>
234
  <select name="es_c_optinoption" id="es_c_optinoption">
240
  <tr>
241
  <th scope="row">
242
  <label for="elp"><?php echo __( 'Image Size', ES_TDOMAIN ); ?>
243
+ <p class="description"><?php echo __( 'Select image size for ###POSTIMAGE### to be shown in the Post Notification Emails.', ES_TDOMAIN ); ?></p></label>
244
  </th>
245
  <td>
246
  <select name="es_c_post_image_size" id="es_c_post_image_size">
252
  </tr>
253
  <tr>
254
  <th scope="row">
255
+ <label for="elp"><?php echo __( 'Double Opt In Mail Subject (Confirmation Email)', ES_TDOMAIN ); ?>
256
+ <p class="description"><?php echo __( 'Enter the subject for the confirmation email to be sent Double Opt In whenever a user signs up.', ES_TDOMAIN ); ?></p></label>
257
  </th>
258
  <td><input name="es_c_optinsubject" type="text" id="es_c_optinsubject" value="<?php echo esc_html(stripslashes($form['es_c_optinsubject'])); ?>" size="60" maxlength="225" /></td>
259
  </tr>
260
  <tr>
261
  <th scope="row">
262
+ <label for="elp"><?php echo __('Double Opt In Mail Content (Confirmation Email)', ES_TDOMAIN); ?>
263
+ <p class="description"><?php echo __( 'Enter the content for the confirmation email to be sent for Double Opt In whenever a user signs up. (Keyword: ###NAME###)', ES_TDOMAIN ); ?></p></label>
264
  </th>
265
  <td><textarea size="100" id="es_c_optincontent" rows="10" cols="58" name="es_c_optincontent"><?php echo esc_html(stripslashes($form['es_c_optincontent'])); ?></textarea></td>
266
  </tr>
267
  <tr>
268
  <th scope="row">
269
+ <label for="elp"><?php echo __( 'Double Opt In Confirmation Link', ES_TDOMAIN ); ?><p class="description">
270
+ <?php echo __( 'It is a readonly field and you are advised not to modify it.', ES_TDOMAIN ); ?></p></label>
271
  </th>
272
  <td><input name="es_c_optinlink" type="text" id="es_c_optinlink" value="<?php echo esc_html(stripslashes($form['es_c_optinlink'])); ?>" size="60" maxlength="225" readonly /></td>
273
  </tr>
274
  <tr>
275
  <th scope="row">
276
+ <label for="elp"><?php echo __( 'Text to display after Email is successfully subscribed from Double Opt In (confirmation) Email', ES_TDOMAIN ); ?>
277
+ <p class="description"><?php echo __( 'This text will be displayed once user clicks on email confirmation link from the Double Opt In (confirmation) Email.', ES_TDOMAIN ); ?></p></label>
278
  </th>
279
  <td><textarea size="100" id="es_c_subhtml" rows="4" cols="58" name="es_c_subhtml"><?php echo esc_html(stripslashes($form['es_c_subhtml'])); ?></textarea></td>
280
  </tr>
281
  <!-------------------------------------------------------------------------------->
282
  <tr>
283
  <th scope="row">
284
+ <label for="elp"><?php echo __( 'Subscriber Welcome Email', ES_TDOMAIN ); ?>
285
+ <p class="description"><?php echo __( 'To send welcome email to subscriber after successful signup. This option must be set to YES.', ES_TDOMAIN ); ?></p></label>
286
  </th>
287
  <td>
288
  <select name="es_c_usermailoption" id="es_c_usermailoption">
293
  </tr>
294
  <tr>
295
  <th scope="row">
296
+ <label for="elp"><?php echo __( 'Subscriber Welcome Email Subject', ES_TDOMAIN ); ?>
297
+ <p class="description"><?php echo __( 'Enter the subject for the subscriber welcome email. This will be sent whenever a user\'s email is either confirmed (if Double Opt In) / subscribed (if Single Op In) successfully.', ES_TDOMAIN ); ?></p></label>
298
  </th>
299
  <td><input name="es_c_usermailsubject" type="text" id="es_c_usermailsubject" value="<?php echo esc_html(stripslashes($form['es_c_usermailsubject'])); ?>" size="60" maxlength="225" /></td>
300
  </tr>
301
  <tr>
302
  <th scope="row">
303
+ <label for="elp"><?php echo __( 'Subscriber Welcome Email Content', ES_TDOMAIN ); ?>
304
+ <p class="description"><?php echo __( 'Enter the content for the subscriber welcome email whenever a user\'s email is either confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully. (Keyword: ###NAME###)', ES_TDOMAIN ); ?></p>
305
  </label>
306
  </th>
307
  <td><textarea size="100" id="es_c_usermailcontant" rows="10" cols="58" name="es_c_usermailcontant"><?php echo esc_html(stripslashes($form['es_c_usermailcontant'])); ?></textarea></td>
309
  <!-------------------------------------------------------------------------------->
310
  <tr>
311
  <th scope="row">
312
+ <label for="elp"><?php echo __( 'Unsubscribe Link', ES_TDOMAIN ); ?>
313
+ <p class="description"><?php echo __( 'It is a readonly field and you are advised not to modify it.', ES_TDOMAIN ); ?></p></label>
314
  </th>
315
+ <td><input name="es_c_unsublink" type="text" id="es_c_unsublink" value="<?php echo esc_html(stripslashes($form['es_c_unsublink'])); ?>" size="60" maxlength="225" readonly /></td>
 
 
 
 
 
316
  </tr>
317
  <tr>
318
  <th scope="row">
319
+ <label for="elp"><?php echo __( 'Unsubscribe Text in Email', ES_TDOMAIN ); ?>
320
+ <p class="description"><?php echo __( 'Enter the text for the unsubscribe link. This text is added with unsubscribe link in the emails. (Keyword: ###LINK###)', ES_TDOMAIN ); ?></p></label>
321
  </th>
322
+ <td><textarea size="100" id="es_c_unsubtext" rows="4" cols="58" name="es_c_unsubtext"><?php echo esc_html(stripslashes($form['es_c_unsubtext'])); ?></textarea></td>
323
+ </tr>
324
  <tr>
325
  <th scope="row">
326
+ <label for="elp"><?php echo __( 'Text to display after Email is unsubscribed', ES_TDOMAIN ); ?>
327
+ <p class="description"><?php echo __( 'This text will be displayed once user clicks on unsubscribe link.', ES_TDOMAIN ); ?></p></label>
328
  </th>
329
+ <td><textarea size="100" id="es_c_unsubhtml" rows="4" cols="58" name="es_c_unsubhtml"><?php echo esc_html(stripslashes($form['es_c_unsubhtml'])); ?></textarea></td>
330
  </tr>
331
+ <!-------------------------------------------------------------------------------->
332
  <tr>
333
  <th scope="row">
334
+ <label for="elp"><?php echo __( 'Error in Confirmation Link', ES_TDOMAIN ); ?>
335
+ <p class="description"><?php echo __( 'Default message to display if there is any issue while clicking on confirmation link from the Double Opt In (confirmation) Emails.', ES_TDOMAIN ); ?></p></label>
336
  </th>
337
+ <td><textarea size="100" id="es_c_message1" rows="4" cols="58" name="es_c_message1"><?php echo esc_html(stripslashes($form['es_c_message1'])); ?></textarea></td>
338
  </tr>
 
339
  <tr>
340
  <th scope="row">
341
+ <label for="elp"><?php echo __( 'Error in Unsubscribe Link', ES_TDOMAIN ); ?>
342
+ <p class="description"><?php echo __( 'Default message to display if there is any issue while clicking on unsubscribe link from the Emails.', ES_TDOMAIN ); ?></p></label>
343
  </th>
344
+ <td><textarea size="100" id="es_c_message2" rows="4" cols="58" name="es_c_message2"><?php echo esc_html(stripslashes($form['es_c_message2'])); ?></textarea></td>
345
  </tr>
346
+ <!-------------------------------------------------------------------------------->
347
  <tr>
348
  <th scope="row">
349
+ <label for="elp"><?php echo __( 'Admin Email Addresses', ES_TDOMAIN ); ?>
350
+ <p class="description"><?php echo __( 'Enter the admin email addresses that should receive notifications (separated by comma).', ES_TDOMAIN ); ?></p></label>
351
  </th>
352
+ <td><input name="es_c_adminemail" type="text" id="es_c_adminemail" value="<?php echo esc_html(stripslashes($form['es_c_adminemail'])); ?>" size="60" maxlength="225" /></td>
353
+ </tr>
354
  <tr>
355
  <th scope="row">
356
+ <label for="elp"><?php echo __( 'Notify Admin about New Subscriber', ES_TDOMAIN ); ?>
357
+ <p class="description"><?php echo __( 'To send admin email notifications for the new subscriber. This option must be set to YES.', ES_TDOMAIN ); ?></p>
358
+ </label>
359
  </th>
360
+ <td>
361
+ <select name="es_c_adminmailoption" id="es_c_adminmailoption">
362
+ <option value='YES' <?php if($form['es_c_adminmailoption'] == 'YES') { echo 'selected' ; } ?>><?php echo __( 'YES', ES_TDOMAIN ); ?></option>
363
+ <option value='NO' <?php if($form['es_c_adminmailoption'] == 'NO') { echo 'selected' ; } ?>><?php echo __( 'NO', ES_TDOMAIN ); ?></option>
364
+ </select>
365
+ </td>
366
  </tr>
 
367
  <tr>
368
  <th scope="row">
369
+ <label for="elp"><?php echo __( 'Admin Email Subject', ES_TDOMAIN ); ?>
370
+ <p class="description"><?php echo __( 'Enter the subject for the admin email. This will be sent whenever a new email is added and confirmed.', ES_TDOMAIN ); ?></p></label>
371
  </th>
372
+ <td><input name="es_c_adminmailsubject" type="text" id="es_c_adminmailsubject" value="<?php echo esc_html(stripslashes($form['es_c_adminmailsubject'])); ?>" size="60" maxlength="225" /></td>
373
  </tr>
374
  <tr>
375
  <th scope="row">
376
+ <label for="elp"><?php echo __( 'Admin Email Content', ES_TDOMAIN ); ?>
377
+ <p class="description"><?php echo __( 'Enter the email content for the admin email. This will be sent whenever a new email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)', ES_TDOMAIN ); ?></p></label>
378
  </th>
379
+ <td><textarea size="100" id="es_c_adminmailcontant" rows="10" cols="58" name="es_c_adminmailcontant"><?php echo esc_html(stripslashes($form['es_c_adminmailcontant'])); ?></textarea></td>
380
  </tr>
381
  <!-------------------------------------------------------------------------------->
382
  <tr>
383
  <th scope="row">
384
+ <label for="elp"><?php echo __( 'Sent Report Subject', ES_TDOMAIN ); ?>
385
+ <p class="description"><?php echo __( 'Enter the subject for the sent email report. It will be mailed to Admin.', ES_TDOMAIN ); ?></p></label>
386
  </th>
387
  <td><input name="es_c_sentreport_subject" type="text" id="es_c_sentreport_subject" value="<?php echo esc_html(stripslashes($form['es_c_sentreport_subject'])); ?>" size="60" maxlength="225" /></td>
388
  </tr>
389
  <tr>
390
  <th scope="row">
391
+ <label for="elp"><?php echo __( 'Sent Report Content', ES_TDOMAIN ); ?>
392
+ <p class="description"><?php echo __( 'Enter the content for the sent mail report. It will be mailed to Admin. (Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)', ES_TDOMAIN ); ?></p></label>
393
  </th>
394
  <td><textarea size="100" id="es_c_sentreport" rows="8" cols="58" name="es_c_sentreport"><?php echo esc_html(stripslashes($form['es_c_sentreport'])); ?></textarea></td>
395
  </tr>
399
  <input type="hidden" name="es_form_submit" value="yes"/>
400
  <input type="hidden" name="es_c_id" id="es_c_id" value="<?php echo $form['es_c_id']; ?>"/>
401
  <p style="padding-top:10px;">
402
+ <input type="submit" name="publish" class="button-primary" value="<?php echo __( 'Save Settings', ES_TDOMAIN ); ?>" />
403
  </p>
404
  <?php wp_nonce_field('es_form_edit'); ?>
405
  </form>
subscribers/view-subscriber-add.php CHANGED
@@ -89,7 +89,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
89
  </div><?php
90
  }
91
  if ($es_error_found == FALSE && isset($es_success[0]) == TRUE) {
92
- ?><div class="updated fade">
93
  <p><strong>
94
  <?php echo $es_success; ?>
95
  </strong></p>
@@ -99,22 +99,20 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
99
  ?>
100
 
101
  <style type="text/css">
102
- .form-table th {
103
- width:260px;
104
- }
105
  </style>
106
 
107
- <div class="form-wrap">
108
- <div id="icon-plugins" class="icon32"></div>
109
- <h2><?php echo __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ); ?></h2>
 
 
 
 
 
110
  <form name="form_addemail" method="post" action="#" onsubmit="return _es_addemail()">
111
- <h3 class="title">
112
- <?php echo __( 'Add New Subscriber', ES_TDOMAIN ); ?>
113
- <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=import"><?php echo __( 'Import', ES_TDOMAIN ); ?></a>
114
- <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=export"><?php echo __( 'Export', ES_TDOMAIN ); ?></a>
115
- <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=sync"><?php echo __( 'Sync', ES_TDOMAIN ); ?></a>
116
- <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
117
- </h3>
118
  <div class="tool-box">
119
  <table class="form-table">
120
  <tbody>
@@ -181,7 +179,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
181
  </div>
182
  <input type="hidden" name="es_form_submit" value="yes"/>
183
  <p style="padding-top:5px;">
184
- <input type="submit" class="button add-new-h2" value="<?php echo __( 'Add Subscriber', ES_TDOMAIN ); ?>" />
185
  </p>
186
  <?php wp_nonce_field('es_form_add'); ?>
187
  </form>
89
  </div><?php
90
  }
91
  if ($es_error_found == FALSE && isset($es_success[0]) == TRUE) {
92
+ ?><div class="notice notice-success is-dismissible">
93
  <p><strong>
94
  <?php echo $es_success; ?>
95
  </strong></p>
99
  ?>
100
 
101
  <style type="text/css">
102
+ .form-table th {
103
+ width:260px;
104
+ }
105
  </style>
106
 
107
+ <div class="wrap">
108
+ <h2>
109
+ <?php echo __( 'Add New Subscriber', ES_TDOMAIN ); ?>
110
+ <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=import"><?php echo __( 'Import', ES_TDOMAIN ); ?></a>
111
+ <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=export"><?php echo __( 'Export', ES_TDOMAIN ); ?></a>
112
+ <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=sync"><?php echo __( 'Sync', ES_TDOMAIN ); ?></a>
113
+ <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
114
+ </h2>
115
  <form name="form_addemail" method="post" action="#" onsubmit="return _es_addemail()">
 
 
 
 
 
 
 
116
  <div class="tool-box">
117
  <table class="form-table">
118
  <tbody>
179
  </div>
180
  <input type="hidden" name="es_form_submit" value="yes"/>
181
  <p style="padding-top:5px;">
182
+ <input type="submit" class="button-primary" value="<?php echo __( 'Add Subscriber', ES_TDOMAIN ); ?>" />
183
  </p>
184
  <?php wp_nonce_field('es_form_add'); ?>
185
  </form>
subscribers/view-subscriber-edit.php CHANGED
@@ -87,7 +87,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
87
  }
88
 
89
  if ($es_error_found == FALSE && strlen($es_success) > 0) {
90
- ?><div class="updated fade">
91
  <p><strong>
92
  <?php echo $es_success; ?>
93
  </strong></p>
@@ -102,25 +102,23 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
102
  }
103
  </style>
104
 
105
- <div class="form-wrap">
106
- <div id="icon-plugins" class="icon32"></div>
107
- <h2><?php echo __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ); ?></h2>
 
 
 
 
 
 
108
  <form name="form_addemail" method="post" action="#" onsubmit="return _es_addemail()">
109
- <h3 class="title">
110
- <?php echo __( 'Edit Subscriber', ES_TDOMAIN ); ?>
111
- <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=add"><?php echo __( 'Add New Subscriber', ES_TDOMAIN ); ?></a>
112
- <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=import"><?php echo __( 'Import', ES_TDOMAIN ); ?></a>
113
- <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=export"><?php echo __( 'Export', ES_TDOMAIN ); ?></a>
114
- <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=sync"><?php echo __( 'Sync', ES_TDOMAIN ); ?></a>
115
- <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
116
- </h3>
117
  <div class="tool-box">
118
  <table class="form-table">
119
  <tbody>
120
  <tr>
121
  <th scope="row">
122
  <label for="tag-image">
123
- <?php echo __( 'Edit Subscriber\'s Full Name', ES_TDOMAIN ); ?>
124
  </label>
125
  </th>
126
  <td>
@@ -130,7 +128,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
130
  <tr>
131
  <th scope="row">
132
  <label for="tag-image">
133
- <?php echo __( 'Edit Subscriber\'s Email Address', ES_TDOMAIN ); ?>
134
  </label>
135
  </th>
136
  <td>
@@ -189,7 +187,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
189
  <input type="hidden" name="es_form_submit" value="yes"/>
190
  <input type="hidden" name="es_email_id" id="es_email_id" value="<?php echo $form['es_email_id']; ?>"/>
191
  <p style="padding-top:5px;">
192
- <input class="button add-new-h2" value="<?php echo __( 'Save', ES_TDOMAIN ); ?>" type="submit" />
193
  </p>
194
  <?php wp_nonce_field('es_form_edit'); ?>
195
  </form>
87
  }
88
 
89
  if ($es_error_found == FALSE && strlen($es_success) > 0) {
90
+ ?><div class="notice notice-success is-dismissible">
91
  <p><strong>
92
  <?php echo $es_success; ?>
93
  </strong></p>
102
  }
103
  </style>
104
 
105
+ <div class="wrap">
106
+ <h2>
107
+ <?php echo __( 'Edit Subscriber', ES_TDOMAIN ); ?>
108
+ <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=add"><?php echo __( 'Add New Subscriber', ES_TDOMAIN ); ?></a>
109
+ <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=import"><?php echo __( 'Import', ES_TDOMAIN ); ?></a>
110
+ <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=export"><?php echo __( 'Export', ES_TDOMAIN ); ?></a>
111
+ <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=sync"><?php echo __( 'Sync', ES_TDOMAIN ); ?></a>
112
+ <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
113
+ </h2>
114
  <form name="form_addemail" method="post" action="#" onsubmit="return _es_addemail()">
 
 
 
 
 
 
 
 
115
  <div class="tool-box">
116
  <table class="form-table">
117
  <tbody>
118
  <tr>
119
  <th scope="row">
120
  <label for="tag-image">
121
+ <?php echo __( 'Subscriber\'s Full Name', ES_TDOMAIN ); ?>
122
  </label>
123
  </th>
124
  <td>
128
  <tr>
129
  <th scope="row">
130
  <label for="tag-image">
131
+ <?php echo __( 'Subscriber\'s Email Address', ES_TDOMAIN ); ?>
132
  </label>
133
  </th>
134
  <td>
187
  <input type="hidden" name="es_form_submit" value="yes"/>
188
  <input type="hidden" name="es_email_id" id="es_email_id" value="<?php echo $form['es_email_id']; ?>"/>
189
  <p style="padding-top:5px;">
190
+ <input class="button-primary" value="<?php echo __( 'Save', ES_TDOMAIN ); ?>" type="submit" />
191
  </p>
192
  <?php wp_nonce_field('es_form_edit'); ?>
193
  </form>
subscribers/view-subscriber-export.php CHANGED
@@ -6,7 +6,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
6
 
7
  $home_url = home_url('/');
8
 
9
- // Total Subscribers (with all statues)
10
  $cnt_subscriber = 0;
11
  $cnt_subscriber = es_cls_dbquery::es_view_subscriber_count(0);
12
 
@@ -21,15 +21,13 @@ $cnt_comment_author = $wpdb->get_var( "SELECT count(DISTINCT comment_author_emai
21
  ?>
22
 
23
  <div class="wrap">
24
- <div id="icon-plugins" class="icon32"></div>
25
- <h2><?php echo __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ); ?></h2>
26
- <h3>
27
  <?php echo __( 'Export Email Addresses', ES_TDOMAIN ); ?>
28
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=add"><?php echo __( 'Add New Subscriber', ES_TDOMAIN ); ?></a>
29
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=import"><?php echo __( 'Import', ES_TDOMAIN ); ?></a>
30
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=sync"><?php echo __( 'Sync', ES_TDOMAIN ); ?></a>
31
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
32
- </h3>
33
  <div class="tool-box">
34
  <form name="frm_es_subscriberexport" method="post">
35
  <table width="100%" class="widefat" id="straymanage">
6
 
7
  $home_url = home_url('/');
8
 
9
+ // Total Subscribers (with all status)
10
  $cnt_subscriber = 0;
11
  $cnt_subscriber = es_cls_dbquery::es_view_subscriber_count(0);
12
 
21
  ?>
22
 
23
  <div class="wrap">
24
+ <h2 style="margin-bottom:1em;">
 
 
25
  <?php echo __( 'Export Email Addresses', ES_TDOMAIN ); ?>
26
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=add"><?php echo __( 'Add New Subscriber', ES_TDOMAIN ); ?></a>
27
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=import"><?php echo __( 'Import', ES_TDOMAIN ); ?></a>
28
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=sync"><?php echo __( 'Sync', ES_TDOMAIN ); ?></a>
29
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
30
+ </h2>
31
  <div class="tool-box">
32
  <form name="frm_es_subscriberexport" method="post">
33
  <table width="100%" class="widefat" id="straymanage">
subscribers/view-subscriber-import.php CHANGED
@@ -87,7 +87,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
87
  }
88
 
89
  ?>
90
- <div class="updated fade">
91
  <p><strong><?php echo $inserted; ?> <?php echo __( 'email imported.', ES_TDOMAIN ); ?></strong></p>
92
  <p><strong><?php echo $duplicate; ?> <?php echo __( 'email already exists.', ES_TDOMAIN ); ?></strong></p>
93
  <p><strong><?php echo $invalid; ?> <?php echo __( 'email are invalid.', ES_TDOMAIN ); ?></strong></p>
@@ -119,7 +119,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
119
 
120
  if ($es_error_found == FALSE && isset($es_success[0]) == TRUE) {
121
  ?>
122
- <div class="updated fade">
123
  <p><strong>
124
  <?php echo $es_success; ?><a href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers">
125
  <?php echo __( 'Click here', ES_TDOMAIN ); ?></a> <?php echo __( ' to view details.', ES_TDOMAIN ); ?>
@@ -131,21 +131,19 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
131
  ?>
132
 
133
  <style type="text/css">
134
- .form-table th {
135
- width:260px;
136
- }
137
  </style>
138
 
139
- <div class="form-wrap">
140
- <div id="icon-plugins" class="icon32"></div>
141
- <h2><?php echo __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ); ?></h2>
142
- <h3>
143
  <?php echo __( 'Import Email Addresses', ES_TDOMAIN ); ?>
144
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=add"><?php echo __( 'Add New Subscriber', ES_TDOMAIN ); ?></a>
145
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=export"><?php echo __( 'Export', ES_TDOMAIN ); ?></a>
146
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=sync"><?php echo __( 'Sync', ES_TDOMAIN ); ?></a>
147
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
148
- </h3>
149
  <div class="tool-box">
150
  <form name="form_addemail" id="form_addemail" method="post" action="#" onsubmit="return _es_importemail()" enctype="multipart/form-data">
151
  <table class="form-table">
@@ -154,7 +152,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
154
  <th scope="row">
155
  <label for="tag-image">
156
  <?php echo __( 'Select CSV file', ES_TDOMAIN ); ?>
157
- <p>
158
  <?php echo __( 'Check CSV structure ', ES_TDOMAIN ); ?>
159
  <a target="_blank" href="http://www.icegram.com/documentation/es-how-to-import-or-export-email-addresses/"><?php echo __( 'from here', ES_TDOMAIN ); ?></a>
160
  </p>
@@ -208,7 +206,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
208
  </table>
209
  <input type="hidden" name="es_form_submit" value="yes"/>
210
  <p style="padding-top:10px;">
211
- <input type="submit" class="button add-new-h2" value="<?php echo __( 'Import', ES_TDOMAIN ); ?>" />
212
  </p>
213
  <?php wp_nonce_field('es_form_add'); ?>
214
  </form>
87
  }
88
 
89
  ?>
90
+ <div class="notice notice-success is-dismissible">
91
  <p><strong><?php echo $inserted; ?> <?php echo __( 'email imported.', ES_TDOMAIN ); ?></strong></p>
92
  <p><strong><?php echo $duplicate; ?> <?php echo __( 'email already exists.', ES_TDOMAIN ); ?></strong></p>
93
  <p><strong><?php echo $invalid; ?> <?php echo __( 'email are invalid.', ES_TDOMAIN ); ?></strong></p>
119
 
120
  if ($es_error_found == FALSE && isset($es_success[0]) == TRUE) {
121
  ?>
122
+ <div class="notice notice-success is-dismissible">
123
  <p><strong>
124
  <?php echo $es_success; ?><a href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers">
125
  <?php echo __( 'Click here', ES_TDOMAIN ); ?></a> <?php echo __( ' to view details.', ES_TDOMAIN ); ?>
131
  ?>
132
 
133
  <style type="text/css">
134
+ .form-table th {
135
+ width:300px;
136
+ }
137
  </style>
138
 
139
+ <div class="wrap">
140
+ <h2>
 
 
141
  <?php echo __( 'Import Email Addresses', ES_TDOMAIN ); ?>
142
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=add"><?php echo __( 'Add New Subscriber', ES_TDOMAIN ); ?></a>
143
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=export"><?php echo __( 'Export', ES_TDOMAIN ); ?></a>
144
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=sync"><?php echo __( 'Sync', ES_TDOMAIN ); ?></a>
145
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
146
+ </h2>
147
  <div class="tool-box">
148
  <form name="form_addemail" id="form_addemail" method="post" action="#" onsubmit="return _es_importemail()" enctype="multipart/form-data">
149
  <table class="form-table">
152
  <th scope="row">
153
  <label for="tag-image">
154
  <?php echo __( 'Select CSV file', ES_TDOMAIN ); ?>
155
+ <p class="description">
156
  <?php echo __( 'Check CSV structure ', ES_TDOMAIN ); ?>
157
  <a target="_blank" href="http://www.icegram.com/documentation/es-how-to-import-or-export-email-addresses/"><?php echo __( 'from here', ES_TDOMAIN ); ?></a>
158
  </p>
206
  </table>
207
  <input type="hidden" name="es_form_submit" value="yes"/>
208
  <p style="padding-top:10px;">
209
+ <input type="submit" class="button-primary" value="<?php echo __( 'Import', ES_TDOMAIN ); ?>" />
210
  </p>
211
  <?php wp_nonce_field('es_form_add'); ?>
212
  </form>
subscribers/view-subscriber-show.php CHANGED
@@ -224,7 +224,7 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
224
 
225
  if ($es_success_msg == TRUE) {
226
  ?>
227
- <div class="updated fade">
228
  <p><strong>
229
  <?php echo $es_success; ?>
230
  </strong></p>
@@ -236,16 +236,14 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
236
  ?>
237
 
238
  <div class="wrap">
239
- <div id="icon-plugins" class="icon32"></div>
240
- <h2><?php echo __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ); ?></h2>
241
- <h3>
242
- <?php echo __( 'View Subscribers', ES_TDOMAIN ); ?>
243
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=add"><?php echo __( 'Add New Subscriber', ES_TDOMAIN ); ?></a>
244
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=import"><?php echo __( 'Import', ES_TDOMAIN ); ?></a>
245
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=export"><?php echo __( 'Export', ES_TDOMAIN ); ?></a>
246
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=sync"><?php echo __( 'Sync', ES_TDOMAIN ); ?></a>
247
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
248
- </h3>
249
  <div class="tool-box">
250
  <form name="frm_es_display" method="post" onsubmit="return _es_bulkaction()">
251
  <?php
@@ -355,7 +353,7 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
355
  <th scope="col"><?php echo __( 'Name', ES_TDOMAIN ); ?></th>
356
  <th scope="col"><?php echo __( 'Status', ES_TDOMAIN ); ?></th>
357
  <th scope="col"><?php echo __( 'Group', ES_TDOMAIN ); ?></th>
358
- <th scope="col"><?php echo __( 'Submission Date<br>(YYYY-MM-DD)', ES_TDOMAIN ); ?></th>
359
  <th scope="col"><?php echo __( 'Action', ES_TDOMAIN ); ?></th>
360
  </tr>
361
  </thead>
@@ -369,7 +367,7 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
369
  <th scope="col"><?php echo __( 'Name', ES_TDOMAIN ); ?></th>
370
  <th scope="col"><?php echo __( 'Status', ES_TDOMAIN ); ?></th>
371
  <th scope="col"><?php echo __( 'Group', ES_TDOMAIN ); ?></th>
372
- <th scope="col"><?php echo __( 'Submission Date<br>(YYYY-MM-DD)', ES_TDOMAIN ); ?></th>
373
  <th scope="col"><?php echo __( 'Action', ES_TDOMAIN ); ?></th>
374
  </tr>
375
  </tfoot>
224
 
225
  if ($es_success_msg == TRUE) {
226
  ?>
227
+ <div class="notice notice-success is-dismissible">
228
  <p><strong>
229
  <?php echo $es_success; ?>
230
  </strong></p>
236
  ?>
237
 
238
  <div class="wrap">
239
+ <h2 style="margin-bottom:1em;">
240
+ <?php echo __( 'Subscribers', ES_TDOMAIN ); ?>
 
 
241
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=add"><?php echo __( 'Add New Subscriber', ES_TDOMAIN ); ?></a>
242
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=import"><?php echo __( 'Import', ES_TDOMAIN ); ?></a>
243
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=export"><?php echo __( 'Export', ES_TDOMAIN ); ?></a>
244
  <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=sync"><?php echo __( 'Sync', ES_TDOMAIN ); ?></a>
245
  <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
246
+ </h2>
247
  <div class="tool-box">
248
  <form name="frm_es_display" method="post" onsubmit="return _es_bulkaction()">
249
  <?php
353
  <th scope="col"><?php echo __( 'Name', ES_TDOMAIN ); ?></th>
354
  <th scope="col"><?php echo __( 'Status', ES_TDOMAIN ); ?></th>
355
  <th scope="col"><?php echo __( 'Group', ES_TDOMAIN ); ?></th>
356
+ <th scope="col"><?php echo __( 'Signup Date<br>(YYYY-MM-DD)', ES_TDOMAIN ); ?></th>
357
  <th scope="col"><?php echo __( 'Action', ES_TDOMAIN ); ?></th>
358
  </tr>
359
  </thead>
367
  <th scope="col"><?php echo __( 'Name', ES_TDOMAIN ); ?></th>
368
  <th scope="col"><?php echo __( 'Status', ES_TDOMAIN ); ?></th>
369
  <th scope="col"><?php echo __( 'Group', ES_TDOMAIN ); ?></th>
370
+ <th scope="col"><?php echo __( 'Signup Date<br>(YYYY-MM-DD)', ES_TDOMAIN ); ?></th>
371
  <th scope="col"><?php echo __( 'Action', ES_TDOMAIN ); ?></th>
372
  </tr>
373
  </tfoot>
subscribers/view-subscriber-sync.php CHANGED
@@ -68,7 +68,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
68
 
69
  if ($es_error_found == FALSE && isset($es_success[0]) == TRUE) {
70
  ?>
71
- <div class="updated fade">
72
  <p><strong><?php echo $es_success; ?></strong></p>
73
  </div>
74
  <?php
@@ -77,22 +77,20 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
77
  ?>
78
 
79
  <style type="text/css">
80
- .form-table th {
81
- width:300px;
82
- }
83
  </style>
84
 
85
- <div class="form-wrap">
86
- <div id="icon-plugins" class="icon32"></div>
87
- <h2><?php echo __( ES_PLUGIN_DISPLAY, ES_TDOMAIN ); ?></h2>
 
 
 
 
 
88
  <form name="form_addemail" method="post" action="#" onsubmit="return _es_addemail()">
89
- <h3 class="title">
90
- <?php echo __( 'Sync Email', ES_TDOMAIN ); ?>
91
- <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=add"><?php echo __( 'Add New Subscriber', ES_TDOMAIN ); ?></a>
92
- <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=import"><?php echo __( 'Import', ES_TDOMAIN ); ?></a>
93
- <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=export"><?php echo __( 'Export', ES_TDOMAIN ); ?></a>
94
- <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
95
- </h3>
96
  <div class="tool-box">
97
  <table class="form-table">
98
  <tbody>
@@ -141,7 +139,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
141
  </div>
142
  <input type="hidden" name="es_form_submit" value="yes"/>
143
  <p style="padding-top:5px;">
144
- <input type="submit" class="button add-new-h2" value="<?php echo __( 'Sync', ES_TDOMAIN ); ?>" />
145
  </p>
146
  <?php wp_nonce_field('es_form_add'); ?>
147
  </form>
68
 
69
  if ($es_error_found == FALSE && isset($es_success[0]) == TRUE) {
70
  ?>
71
+ <div class="notice notice-success is-dismissible">
72
  <p><strong><?php echo $es_success; ?></strong></p>
73
  </div>
74
  <?php
77
  ?>
78
 
79
  <style type="text/css">
80
+ .form-table th {
81
+ width:350px;
82
+ }
83
  </style>
84
 
85
+ <div class="wrap">
86
+ <h2>
87
+ <?php echo __( 'Sync Email', ES_TDOMAIN ); ?>
88
+ <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=add"><?php echo __( 'Add New Subscriber', ES_TDOMAIN ); ?></a>
89
+ <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=import"><?php echo __( 'Import', ES_TDOMAIN ); ?></a>
90
+ <a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-view-subscribers&amp;ac=export"><?php echo __( 'Export', ES_TDOMAIN ); ?></a>
91
+ <a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
92
+ </h2>
93
  <form name="form_addemail" method="post" action="#" onsubmit="return _es_addemail()">
 
 
 
 
 
 
 
94
  <div class="tool-box">
95
  <table class="form-table">
96
  <tbody>
139
  </div>
140
  <input type="hidden" name="es_form_submit" value="yes"/>
141
  <p style="padding-top:5px;">
142
+ <input type="submit" class="button-primary" value="<?php echo __( 'Sync', ES_TDOMAIN ); ?>" />
143
  </p>
144
  <?php wp_nonce_field('es_form_add'); ?>
145
  </form>