Version Description
- Some optimization
Download this release
Release Info
| Developer | acalbert |
| Plugin | |
| Version | 1.1.5 |
| Comparing to | |
| See all releases | |
Code changes from version 1.1.4 to 1.1.5
- readme.txt +8 -3
- wp-smtp.php +2 -2
- wp_smtp_admin.php +11 -10
readme.txt
CHANGED
|
@@ -4,8 +4,8 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=SKA6T
|
|
| 4 |
Tags: wp smtp,smtp,mail,email,phpmailer,mailer,wp mail,gmail,mail smtp,ssl,tls
|
| 5 |
License: GPLv2
|
| 6 |
Requires at least: 2.7
|
| 7 |
-
Tested up to: 3.
|
| 8 |
-
Stable tag: 1.1.
|
| 9 |
|
| 10 |
WP SMTP can help us to send emails via SMTP instead of the PHP mail() function.
|
| 11 |
|
|
@@ -26,7 +26,8 @@ If the field "From" was not a valid email address, or the field "Host" was left
|
|
| 26 |
|
| 27 |
Related Links:
|
| 28 |
|
| 29 |
-
* <a href="http://boliquan.com/wp-smtp/">WP
|
|
|
|
| 30 |
* <a href="http://boliquan.com/wp-anti-spam/">WP Anti Spam</a> | <a href="http://wordpress.org/extend/plugins/wp-anti-spam/">Download</a>
|
| 31 |
* <a href="http://boliquan.com/wp-code-highlight/">WP Code Highlight</a> | <a href="http://wordpress.org/extend/plugins/wp-code-highlight/">Download</a>
|
| 32 |
* <a href="http://boliquan.com/wp-slug-translate/">WP Slug Translate</a> | <a href="http://wordpress.org/extend/plugins/wp-slug-translate/">Download</a>
|
|
@@ -47,6 +48,10 @@ Related Links:
|
|
| 47 |
|
| 48 |
== Changelog ==
|
| 49 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
= 1.1.4 =
|
| 51 |
|
| 52 |
* If the field "From" was not a valid email address, or the field "Host" was left blank, it will not reconfigure the wp_mail() function.
|
| 4 |
Tags: wp smtp,smtp,mail,email,phpmailer,mailer,wp mail,gmail,mail smtp,ssl,tls
|
| 5 |
License: GPLv2
|
| 6 |
Requires at least: 2.7
|
| 7 |
+
Tested up to: 3.5
|
| 8 |
+
Stable tag: 1.1.5
|
| 9 |
|
| 10 |
WP SMTP can help us to send emails via SMTP instead of the PHP mail() function.
|
| 11 |
|
| 26 |
|
| 27 |
Related Links:
|
| 28 |
|
| 29 |
+
* <a href="http://boliquan.com/wp-smtp/">WP SMTP (FAQ)</a> | <a href="http://wordpress.org/extend/plugins/wp-smtp/">Download</a>
|
| 30 |
+
* <a href="http://boliquan.com/wp-clean-up/">WP Clean Up</a> | <a href="http://wordpress.org/extend/plugins/wp-clean-up/">Download</a>
|
| 31 |
* <a href="http://boliquan.com/wp-anti-spam/">WP Anti Spam</a> | <a href="http://wordpress.org/extend/plugins/wp-anti-spam/">Download</a>
|
| 32 |
* <a href="http://boliquan.com/wp-code-highlight/">WP Code Highlight</a> | <a href="http://wordpress.org/extend/plugins/wp-code-highlight/">Download</a>
|
| 33 |
* <a href="http://boliquan.com/wp-slug-translate/">WP Slug Translate</a> | <a href="http://wordpress.org/extend/plugins/wp-slug-translate/">Download</a>
|
| 48 |
|
| 49 |
== Changelog ==
|
| 50 |
|
| 51 |
+
= 1.1.5 =
|
| 52 |
+
|
| 53 |
+
* Some optimization
|
| 54 |
+
|
| 55 |
= 1.1.4 =
|
| 56 |
|
| 57 |
* If the field "From" was not a valid email address, or the field "Host" was left blank, it will not reconfigure the wp_mail() function.
|
wp-smtp.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
Plugin Name: WP SMTP
|
| 4 |
Plugin URI: http://boliquan.com/wp-smtp/
|
| 5 |
Description: WP SMTP can help us to send emails via SMTP instead of the PHP mail() function.
|
| 6 |
-
Version: 1.1.
|
| 7 |
Author: BoLiQuan
|
| 8 |
Author URI: http://boliquan.com/
|
| 9 |
Text Domain: WP-SMTP
|
|
@@ -68,7 +68,7 @@ function wp_smtp_settings_link($action_links,$plugin_file){
|
|
| 68 |
}
|
| 69 |
return $action_links;
|
| 70 |
}
|
| 71 |
-
add_filter('plugin_action_links','wp_smtp_settings_link',10,
|
| 72 |
|
| 73 |
if(is_admin()){require_once('wp_smtp_admin.php');}
|
| 74 |
|
| 3 |
Plugin Name: WP SMTP
|
| 4 |
Plugin URI: http://boliquan.com/wp-smtp/
|
| 5 |
Description: WP SMTP can help us to send emails via SMTP instead of the PHP mail() function.
|
| 6 |
+
Version: 1.1.5
|
| 7 |
Author: BoLiQuan
|
| 8 |
Author URI: http://boliquan.com/
|
| 9 |
Text Domain: WP-SMTP
|
| 68 |
}
|
| 69 |
return $action_links;
|
| 70 |
}
|
| 71 |
+
add_filter('plugin_action_links','wp_smtp_settings_link',10,2);
|
| 72 |
|
| 73 |
if(is_admin()){require_once('wp_smtp_admin.php');}
|
| 74 |
|
wp_smtp_admin.php
CHANGED
|
@@ -77,7 +77,7 @@ WP SMTP
|
|
| 77 |
</th>
|
| 78 |
<td>
|
| 79 |
<label>
|
| 80 |
-
<input type="text" name="wp_smtp_from" value="<?php echo $wsOptions["from"]; ?>" size="43" />
|
| 81 |
</label>
|
| 82 |
</td>
|
| 83 |
</tr>
|
|
@@ -87,7 +87,7 @@ WP SMTP
|
|
| 87 |
</th>
|
| 88 |
<td>
|
| 89 |
<label>
|
| 90 |
-
<input type="text" name="wp_smtp_fromname" value="<?php echo $wsOptions["fromname"]; ?>" size="43" />
|
| 91 |
</label>
|
| 92 |
</td>
|
| 93 |
</tr>
|
|
@@ -97,7 +97,7 @@ WP SMTP
|
|
| 97 |
</th>
|
| 98 |
<td>
|
| 99 |
<label>
|
| 100 |
-
<input type="text" name="wp_smtp_host" value="<?php echo $wsOptions["host"]; ?>" size="43" />
|
| 101 |
</label>
|
| 102 |
</td>
|
| 103 |
</tr>
|
|
@@ -128,7 +128,7 @@ WP SMTP
|
|
| 128 |
</th>
|
| 129 |
<td>
|
| 130 |
<label>
|
| 131 |
-
<input type="text" name="wp_smtp_port" value="<?php echo $wsOptions["port"]; ?>" size="43" />
|
| 132 |
</label>
|
| 133 |
</td>
|
| 134 |
</tr>
|
|
@@ -154,7 +154,7 @@ WP SMTP
|
|
| 154 |
</th>
|
| 155 |
<td>
|
| 156 |
<label>
|
| 157 |
-
<input type="text" name="wp_smtp_username" value="<?php echo $wsOptions["username"]; ?>" size="43" />
|
| 158 |
</label>
|
| 159 |
</td>
|
| 160 |
</tr>
|
|
@@ -164,7 +164,7 @@ WP SMTP
|
|
| 164 |
</th>
|
| 165 |
<td>
|
| 166 |
<label>
|
| 167 |
-
<input type="password" name="wp_smtp_password" value="<?php echo $wsOptions["password"]; ?>" size="43" />
|
| 168 |
</label>
|
| 169 |
</td>
|
| 170 |
</tr>
|
|
@@ -196,7 +196,7 @@ WP SMTP
|
|
| 196 |
</th>
|
| 197 |
<td>
|
| 198 |
<label>
|
| 199 |
-
<input type="text" name="wp_smtp_to" value="" size="43" />
|
| 200 |
</label>
|
| 201 |
</td>
|
| 202 |
</tr>
|
|
@@ -206,7 +206,7 @@ WP SMTP
|
|
| 206 |
</th>
|
| 207 |
<td>
|
| 208 |
<label>
|
| 209 |
-
<input type="text" name="wp_smtp_subject" value="" size="43" />
|
| 210 |
</label>
|
| 211 |
</td>
|
| 212 |
</tr>
|
|
@@ -216,7 +216,7 @@ WP SMTP
|
|
| 216 |
</th>
|
| 217 |
<td>
|
| 218 |
<label>
|
| 219 |
-
<textarea type="text" name="wp_smtp_message" value="" cols="
|
| 220 |
</label>
|
| 221 |
</td>
|
| 222 |
</tr>
|
|
@@ -247,7 +247,8 @@ If you find my work useful and you want to encourage the development of more fre
|
|
| 247 |
<div class="icon32"><img src="<?php echo $blq_logo_url; ?>" alt="BoLiQuan" /></div>
|
| 248 |
<h2>Related Links</h2>
|
| 249 |
<ul style="margin:0 18px;">
|
| 250 |
-
<li><a href="http://boliquan.com/wp-smtp/" target="_blank">WP
|
|
|
|
| 251 |
<li><a href="http://boliquan.com/wp-anti-spam/" target="_blank">WP Anti Spam</a> | <a href="http://wordpress.org/extend/plugins/wp-anti-spam/" target="_blank">Download</a></li>
|
| 252 |
<li><a href="http://boliquan.com/wp-code-highlight/" target="_blank">WP Code Highlight</a> | <a href="http://wordpress.org/extend/plugins/wp-code-highlight/" target="_blank">Download</a></li>
|
| 253 |
<li><a href="http://boliquan.com/wp-slug-translate/" target="_blank">WP Slug Translate</a> | <a href="http://wordpress.org/extend/plugins/wp-slug-translate/" target="_blank">Download</a></li>
|
| 77 |
</th>
|
| 78 |
<td>
|
| 79 |
<label>
|
| 80 |
+
<input type="text" name="wp_smtp_from" value="<?php echo $wsOptions["from"]; ?>" size="43" style="width:272px;height:24px;" />
|
| 81 |
</label>
|
| 82 |
</td>
|
| 83 |
</tr>
|
| 87 |
</th>
|
| 88 |
<td>
|
| 89 |
<label>
|
| 90 |
+
<input type="text" name="wp_smtp_fromname" value="<?php echo $wsOptions["fromname"]; ?>" size="43" style="width:272px;height:24px;" />
|
| 91 |
</label>
|
| 92 |
</td>
|
| 93 |
</tr>
|
| 97 |
</th>
|
| 98 |
<td>
|
| 99 |
<label>
|
| 100 |
+
<input type="text" name="wp_smtp_host" value="<?php echo $wsOptions["host"]; ?>" size="43" style="width:272px;height:24px;" />
|
| 101 |
</label>
|
| 102 |
</td>
|
| 103 |
</tr>
|
| 128 |
</th>
|
| 129 |
<td>
|
| 130 |
<label>
|
| 131 |
+
<input type="text" name="wp_smtp_port" value="<?php echo $wsOptions["port"]; ?>" size="43" style="width:272px;height:24px;" />
|
| 132 |
</label>
|
| 133 |
</td>
|
| 134 |
</tr>
|
| 154 |
</th>
|
| 155 |
<td>
|
| 156 |
<label>
|
| 157 |
+
<input type="text" name="wp_smtp_username" value="<?php echo $wsOptions["username"]; ?>" size="43" style="width:272px;height:24px;" />
|
| 158 |
</label>
|
| 159 |
</td>
|
| 160 |
</tr>
|
| 164 |
</th>
|
| 165 |
<td>
|
| 166 |
<label>
|
| 167 |
+
<input type="password" name="wp_smtp_password" value="<?php echo $wsOptions["password"]; ?>" size="43" style="width:272px;height:24px;" />
|
| 168 |
</label>
|
| 169 |
</td>
|
| 170 |
</tr>
|
| 196 |
</th>
|
| 197 |
<td>
|
| 198 |
<label>
|
| 199 |
+
<input type="text" name="wp_smtp_to" value="" size="43" style="width:272px;height:24px;" />
|
| 200 |
</label>
|
| 201 |
</td>
|
| 202 |
</tr>
|
| 206 |
</th>
|
| 207 |
<td>
|
| 208 |
<label>
|
| 209 |
+
<input type="text" name="wp_smtp_subject" value="" size="43" style="width:272px;height:24px;" />
|
| 210 |
</label>
|
| 211 |
</td>
|
| 212 |
</tr>
|
| 216 |
</th>
|
| 217 |
<td>
|
| 218 |
<label>
|
| 219 |
+
<textarea type="text" name="wp_smtp_message" value="" cols="45" rows="3" style="width:284px;height:62px;"></textarea>
|
| 220 |
</label>
|
| 221 |
</td>
|
| 222 |
</tr>
|
| 247 |
<div class="icon32"><img src="<?php echo $blq_logo_url; ?>" alt="BoLiQuan" /></div>
|
| 248 |
<h2>Related Links</h2>
|
| 249 |
<ul style="margin:0 18px;">
|
| 250 |
+
<li><a href="http://boliquan.com/wp-smtp/" target="_blank">WP SMTP (FAQ)</a> | <a href="http://wordpress.org/extend/plugins/wp-smtp/" target="_blank">Usage</a> | <a href="http://wordpress.org/extend/plugins/wp-smtp/" target="_blank">Download</a></li>
|
| 251 |
+
<li><a href="http://boliquan.com/wp-clean-up/" target="_blank">WP Clean Up</a> | <a href="http://wordpress.org/extend/plugins/wp-clean-up/" target="_blank">Download</a></li>
|
| 252 |
<li><a href="http://boliquan.com/wp-anti-spam/" target="_blank">WP Anti Spam</a> | <a href="http://wordpress.org/extend/plugins/wp-anti-spam/" target="_blank">Download</a></li>
|
| 253 |
<li><a href="http://boliquan.com/wp-code-highlight/" target="_blank">WP Code Highlight</a> | <a href="http://wordpress.org/extend/plugins/wp-code-highlight/" target="_blank">Download</a></li>
|
| 254 |
<li><a href="http://boliquan.com/wp-slug-translate/" target="_blank">WP Slug Translate</a> | <a href="http://wordpress.org/extend/plugins/wp-slug-translate/" target="_blank">Download</a></li>
|
