WP Mail Bank: WordPress SMTP Plugin & Email Logs - Version 1.25

Version Description

Download this release

Release Info

Developer contact-banker
Plugin Icon 128x128 WP Mail Bank: WordPress SMTP Plugin & Email Logs
Version 1.25
Comparing to
See all releases

Code changes from version 1.24 to 1.25

readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: contact-banker, Gallery-Bank
3
  Tags: admin, ajax, email, gmail, mail, mail smtp, mailer, outgoing mail, phpmailer, plugin, Post, posts, privacy, security, sendmail, smtp, ssl, tls, wordpress smtp, wp smtp, wp-phpmailer, wp_mail, wp mail, mailer
4
  Requires at least: 2.7
5
  Tested up to: 4.2.3
6
- Stable tag: 1.24
7
 
8
  WP Mail Bank reconfigures the PHP Mailer and make it more enhanced with advanced SMTP settings options.
9
 
@@ -222,7 +222,11 @@ If any problem occurs, please contact us at [support@tech-banker.com](mailto:sup
222
 
223
  == Changelog ==
224
 
225
- = 1.0.23 =
 
 
 
 
226
 
227
  * Compatibility with 4.2.3
228
 
3
  Tags: admin, ajax, email, gmail, mail, mail smtp, mailer, outgoing mail, phpmailer, plugin, Post, posts, privacy, security, sendmail, smtp, ssl, tls, wordpress smtp, wp smtp, wp-phpmailer, wp_mail, wp mail, mailer
4
  Requires at least: 2.7
5
  Tested up to: 4.2.3
6
+ Stable tag: 1.25
7
 
8
  WP Mail Bank reconfigures the PHP Mailer and make it more enhanced with advanced SMTP settings options.
9
 
222
 
223
  == Changelog ==
224
 
225
+ = 1.0.25 =
226
+
227
+ * Few Urgent Bugs Fixed
228
+
229
+ = 1.0.24 =
230
 
231
  * Compatibility with 4.2.3
232
 
views/automatic-plugin-update.php CHANGED
@@ -5,7 +5,7 @@ if (!is_user_logged_in())
5
  }
6
  else
7
  {
8
- switch($gmb_role)
9
  {
10
  case "administrator":
11
  $user_role_permission = "manage_options";
5
  }
6
  else
7
  {
8
+ switch($role)
9
  {
10
  case "administrator":
11
  $user_role_permission = "manage_options";
views/mail_settings.php CHANGED
@@ -191,7 +191,7 @@ else
191
  <div class="layout-control-group">
192
  <label class="layout-control-label"><?php _e("SMTP Username", mail_bank); ?> : <span class="error">*</span></label>
193
  <div class="layout-controls">
194
- <input type="text" id="ux_txt_username" name="ux_txt_username" placeholder="Please enter Username" class="layout-span12" value="<?php echo isset($email_data->smtp_username) ? $email_data->smtp_username : "" ;?>"/>
195
  </div>
196
  </div>
197
  </div>
191
  <div class="layout-control-group">
192
  <label class="layout-control-label"><?php _e("SMTP Username", mail_bank); ?> : <span class="error">*</span></label>
193
  <div class="layout-controls">
194
+ <input type="text" id="ux_txt_username" name="ux_txt_username" placeholder="Please enter Username" class="layout-span12" value="<?php echo isset($email_data->smtp_username) ? stripslashes($email_data->smtp_username) : "" ;?>"/>
195
  </div>
196
  </div>
197
  </div>
wp-mail-bank.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Wp Mail Bank
4
  Plugin URI: http://tech-banker.com
5
  Description: WP Mail Bank reconfigures the wp_mail() function and make it more enhanced.
6
  Author: Tech Banker
7
- Version: 1.24
8
  Author URI: http://tech-banker.com
9
  License: GPLv3 or later
10
  */
@@ -63,6 +63,7 @@ function wp_mail_bank_configure($phpmailer)
63
  (
64
  "SELECT * FROM ".wp_mail_bank()
65
  );
 
66
  $phpmailer->Mailer = $data->mailer_type == 0 ? "smtp" : "mail";
67
  $phpmailer->FromName = stripslashes(htmlspecialchars_decode($data->from_name, ENT_QUOTES));
68
  $phpmailer->From = $data->from_email;
4
  Plugin URI: http://tech-banker.com
5
  Description: WP Mail Bank reconfigures the wp_mail() function and make it more enhanced.
6
  Author: Tech Banker
7
+ Version: 1.25
8
  Author URI: http://tech-banker.com
9
  License: GPLv3 or later
10
  */
63
  (
64
  "SELECT * FROM ".wp_mail_bank()
65
  );
66
+ $mail_type = $data->mailer_type;
67
  $phpmailer->Mailer = $data->mailer_type == 0 ? "smtp" : "mail";
68
  $phpmailer->FromName = stripslashes(htmlspecialchars_decode($data->from_name, ENT_QUOTES));
69
  $phpmailer->From = $data->from_email;