Version Description
- $phpmailer->language became protected in WP 3.2, no longer unset on debug output.
Download this release
Release Info
| Developer | chmac |
| Plugin | |
| Version | 0.9.1 |
| Comparing to | |
| See all releases | |
Code changes from version 0.9.0 to 0.9.1
- readme.txt +8 -2
- wp_mail_smtp.php +3 -2
readme.txt
CHANGED
|
@@ -3,8 +3,8 @@ Contributors: chmac
|
|
| 3 |
Donate link: http://www.callum-macdonald.com/code/donate/
|
| 4 |
Tags: mail, smtp, wp_mail, mailer, phpmailer
|
| 5 |
Requires at least: 2.7
|
| 6 |
-
Tested up to: 3.
|
| 7 |
-
Stable tag: 0.9.
|
| 8 |
|
| 9 |
Reconfigures the wp_mail() function to use SMTP instead of mail() and creates an options page to manage the settings.
|
| 10 |
|
|
@@ -62,6 +62,9 @@ By all means please contact me to discuss features or options you'd like to see
|
|
| 62 |
|
| 63 |
== Changelog ==
|
| 64 |
|
|
|
|
|
|
|
|
|
|
| 65 |
= 0.9.0 =
|
| 66 |
* Typo in the From email description.
|
| 67 |
* Removed changelog from plugin file, no need to duplicate it.
|
|
@@ -134,6 +137,9 @@ By all means please contact me to discuss features or options you'd like to see
|
|
| 134 |
|
| 135 |
== Upgrade Notice ==
|
| 136 |
|
|
|
|
|
|
|
|
|
|
| 137 |
= 0.9.0 =
|
| 138 |
Low priority upgrade. Improves the appearance of the options page.
|
| 139 |
|
| 3 |
Donate link: http://www.callum-macdonald.com/code/donate/
|
| 4 |
Tags: mail, smtp, wp_mail, mailer, phpmailer
|
| 5 |
Requires at least: 2.7
|
| 6 |
+
Tested up to: 3.2
|
| 7 |
+
Stable tag: 0.9.1
|
| 8 |
|
| 9 |
Reconfigures the wp_mail() function to use SMTP instead of mail() and creates an options page to manage the settings.
|
| 10 |
|
| 62 |
|
| 63 |
== Changelog ==
|
| 64 |
|
| 65 |
+
= 0.9.1 =
|
| 66 |
+
* $phpmailer->language became protected in WP 3.2, no longer unset on debug output.
|
| 67 |
+
|
| 68 |
= 0.9.0 =
|
| 69 |
* Typo in the From email description.
|
| 70 |
* Removed changelog from plugin file, no need to duplicate it.
|
| 137 |
|
| 138 |
== Upgrade Notice ==
|
| 139 |
|
| 140 |
+
= 0.9.1 =
|
| 141 |
+
Test mail functionality was broken on upgrade to 3.2, now restored.
|
| 142 |
+
|
| 143 |
= 0.9.0 =
|
| 144 |
Low priority upgrade. Improves the appearance of the options page.
|
| 145 |
|
wp_mail_smtp.php
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?php
|
| 2 |
/*
|
| 3 |
Plugin Name: WP-Mail-SMTP
|
| 4 |
-
Version: 0.9.
|
| 5 |
Plugin URI: http://www.callum-macdonald.com/code/wp-mail-smtp/
|
| 6 |
Description: Reconfigures the wp_mail() function to use SMTP instead of mail() and creates an options page to manage the settings.
|
| 7 |
Author: Callum Macdonald
|
|
@@ -194,7 +194,8 @@ function wp_mail_smtp_options_page() {
|
|
| 194 |
$result = wp_mail($to,$subject,$message);
|
| 195 |
|
| 196 |
// Strip out the language strings which confuse users
|
| 197 |
-
unset($phpmailer->language);
|
|
|
|
| 198 |
|
| 199 |
// Grab the smtp debugging output
|
| 200 |
$smtp_debug = ob_get_clean();
|
| 1 |
<?php
|
| 2 |
/*
|
| 3 |
Plugin Name: WP-Mail-SMTP
|
| 4 |
+
Version: 0.9.1
|
| 5 |
Plugin URI: http://www.callum-macdonald.com/code/wp-mail-smtp/
|
| 6 |
Description: Reconfigures the wp_mail() function to use SMTP instead of mail() and creates an options page to manage the settings.
|
| 7 |
Author: Callum Macdonald
|
| 194 |
$result = wp_mail($to,$subject,$message);
|
| 195 |
|
| 196 |
// Strip out the language strings which confuse users
|
| 197 |
+
//unset($phpmailer->language);
|
| 198 |
+
// This property became protected in WP 3.2
|
| 199 |
|
| 200 |
// Grab the smtp debugging output
|
| 201 |
$smtp_debug = ob_get_clean();
|
