Version Description
- Fixing reported issue with passing by reference.
Download this release
Release Info
Developer | chmac |
Plugin | WP Mail SMTP by WPForms |
Version | 0.9.3 |
Comparing to | |
See all releases |
Code changes from version 0.9.2 to 0.9.3
- readme.txt +7 -1
- wp_mail_smtp.php +3 -3
readme.txt
CHANGED
@@ -4,7 +4,7 @@ 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
|
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.2 =
|
66 |
* Removing the deprecation notice.
|
67 |
|
@@ -140,6 +143,9 @@ By all means please contact me to discuss features or options you'd like to see
|
|
140 |
|
141 |
== Upgrade Notice ==
|
142 |
|
|
|
|
|
|
|
143 |
= 0.9.2 =
|
144 |
Removing the deprecation notice.
|
145 |
|
4 |
Tags: mail, smtp, wp_mail, mailer, phpmailer
|
5 |
Requires at least: 2.7
|
6 |
Tested up to: 3.7
|
7 |
+
Stable tag: 0.9.3
|
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.3 =
|
66 |
+
* Fixing reported issue with passing by reference.
|
67 |
+
|
68 |
= 0.9.2 =
|
69 |
* Removing the deprecation notice.
|
70 |
|
143 |
|
144 |
== Upgrade Notice ==
|
145 |
|
146 |
+
= 0.9.3 =
|
147 |
+
Fixing reported issue with passing by reference.
|
148 |
+
|
149 |
= 0.9.2 =
|
150 |
Removing the deprecation notice.
|
151 |
|
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
|
@@ -106,7 +106,7 @@ function phpmailer_init_smtp($phpmailer) {
|
|
106 |
}
|
107 |
|
108 |
// If you're using contstants, set any custom options here
|
109 |
-
$phpmailer = apply_filters('wp_mail_smtp_custom_options',
|
110 |
|
111 |
}
|
112 |
else {
|
@@ -146,7 +146,7 @@ function phpmailer_init_smtp($phpmailer) {
|
|
146 |
|
147 |
// You can add your own options here, see the phpmailer documentation for more info:
|
148 |
// http://phpmailer.sourceforge.net/docs/
|
149 |
-
$phpmailer = apply_filters('wp_mail_smtp_custom_options',
|
150 |
|
151 |
|
152 |
// STOP adding options here.
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: WP-Mail-SMTP
|
4 |
+
Version: 0.9.3
|
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
|
106 |
}
|
107 |
|
108 |
// If you're using contstants, set any custom options here
|
109 |
+
$phpmailer = apply_filters('wp_mail_smtp_custom_options', $phpmailer);
|
110 |
|
111 |
}
|
112 |
else {
|
146 |
|
147 |
// You can add your own options here, see the phpmailer documentation for more info:
|
148 |
// http://phpmailer.sourceforge.net/docs/
|
149 |
+
$phpmailer = apply_filters('wp_mail_smtp_custom_options', $phpmailer);
|
150 |
|
151 |
|
152 |
// STOP adding options here.
|