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

Version Description

  • Major Bugs Fixed
  • Problem Fixed with Email Mime Types
Download this release

Release Info

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

Code changes from version 2.0.4 to 2.0.5

includes/mail-bank-manage-email.php CHANGED
@@ -67,13 +67,13 @@ if(!class_exists("mail_bank_manage_email"))
67
 
68
  $body = $this->mb_get_body();
69
  $content_type = $this->mb_get_content_type();
70
- if(empty($content_type) || substr($content_type, 0, 10) === "text/plain")
71
  {
72
- $this->mb_set_body_textpart($body);
73
  }
74
- else if(substr($content_type,0,9) === "text/html")
75
  {
76
- $this->mb_set_body_htmlPart($body);
77
  }
78
  else if(substr($content_type,0,21) === "multipart/alternative")
79
  {
67
 
68
  $body = $this->mb_get_body();
69
  $content_type = $this->mb_get_content_type();
70
+ if(empty($content_type) || substr($content_type,0,9) === "text/html")
71
  {
72
+ $this->mb_set_body_htmlPart($body);
73
  }
74
+ else if(substr($content_type, 0, 10) === "text/plain")
75
  {
76
+ $this->mb_set_body_textpart($body);
77
  }
78
  else if(substr($content_type,0,21) === "multipart/alternative")
79
  {
includes/sidebar.php CHANGED
@@ -96,7 +96,7 @@ else
96
  </li>
97
  <li class="" id="ux_li_premium_editions">
98
  <a href="admin.php?page=mb_premium_editions">
99
- <i class="icon-custom-key"></i>
100
  <span class="title">
101
  <?php echo $mb_premium_editions_label; ?>
102
  </span>
96
  </li>
97
  <li class="" id="ux_li_premium_editions">
98
  <a href="admin.php?page=mb_premium_editions">
99
+ <i class="icon-custom-briefcase"></i>
100
  <span class="title">
101
  <?php echo $mb_premium_editions_label; ?>
102
  </span>
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: contact-banker, Gallery-Bank, wordpress-empire
3
  Tags: email, gmail, mail, mail smtp, mailer, outgoing mail, phpmailer, sendmail, smtp, ssl, tls, WordPress smtp, wp smtp, wp-phpmailer, wp_mail, wp mail, mailer, mail bank
4
  Requires at least: 2.7
5
  Tested up to: 4.6.1
6
- Stable tag: 2.0.4
7
 
8
  Mail Bank reconfigures the Mail Function and provides sophisticated SMTP settings to send and log emails from your WordPress site.
9
 
@@ -365,6 +365,11 @@ If any problem occurs, please contact us at [support@tech-banker.com](mailto:sup
365
 
366
  == Changelog ==
367
 
 
 
 
 
 
368
  = 2.0.4 =
369
 
370
  * Major Bugs Fixed
@@ -413,7 +418,6 @@ If any problem occurs, please contact us at [support@tech-banker.com](mailto:sup
413
  * CSS Improved
414
  * Screenshots Added
415
 
416
-
417
  = 1.47 =
418
 
419
  * Security Patch Fixed
3
  Tags: email, gmail, mail, mail smtp, mailer, outgoing mail, phpmailer, sendmail, smtp, ssl, tls, WordPress smtp, wp smtp, wp-phpmailer, wp_mail, wp mail, mailer, mail bank
4
  Requires at least: 2.7
5
  Tested up to: 4.6.1
6
+ Stable tag: 2.0.5
7
 
8
  Mail Bank reconfigures the Mail Function and provides sophisticated SMTP settings to send and log emails from your WordPress site.
9
 
365
 
366
  == Changelog ==
367
 
368
+ = 2.0.5 =
369
+
370
+ * Major Bugs Fixed
371
+ * Problem Fixed with Email Mime Types
372
+
373
  = 2.0.4 =
374
 
375
  * Major Bugs Fixed
418
  * CSS Improved
419
  * Screenshots Added
420
 
 
421
  = 1.47 =
422
 
423
  * Security Patch Fixed
wp-mail-bank.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://beta.tech-banker.com
5
  Description: Mail Bank reconfigures the wp_mail() function and make it more enhanced.
6
  Author: Tech Banker
7
  Author URI: http://beta.tech-banker.com
8
- Version: 2.0.4
9
  License: GPLv3
10
  */
11
 
5
  Description: Mail Bank reconfigures the wp_mail() function and make it more enhanced.
6
  Author: Tech Banker
7
  Author URI: http://beta.tech-banker.com
8
+ Version: 2.0.5
9
  License: GPLv3
10
  */
11