Version Description
- Fixed a timeout issue from version 1.7.0.
Download this release
Release Info
Developer | team-rs |
Plugin | SendGrid |
Version | 1.7.1 |
Comparing to | |
See all releases |
Code changes from version 1.7.0 to 1.7.1
- readme.txt +7 -3
- wpsendgrid.php +1 -8
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://sendgrid.com/
|
|
4 |
Tags: email, email reliability, email templates, sendgrid, smtp, transactional email, wp_mail,email infrastructure, email marketing, marketing email, deliverability, email deliverability, email delivery, email server, mail server, email integration, cloud email
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 4.3
|
7 |
-
Stable tag: 1.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -132,8 +132,10 @@ Create a SendGrid account at <a href="http://sendgrid.com/partner/wordpress" tar
|
|
132 |
|
133 |
== Changelog ==
|
134 |
|
|
|
|
|
135 |
= 1.7.0 =
|
136 |
-
* BREAKING CHANGE : wp_mail() now returns only true/false to mirror the return values of the original wp_mail().
|
137 |
* Added the possibility of setting the api key or username/password empty
|
138 |
* Added the possibility of selecting the authentication method
|
139 |
* Removed dependency on cURL, now all API requests are made through Wordpress
|
@@ -207,8 +209,10 @@ Create a SendGrid account at <a href="http://sendgrid.com/partner/wordpress" tar
|
|
207 |
|
208 |
== Upgrade notice ==
|
209 |
|
|
|
|
|
210 |
= 1.7.0 =
|
211 |
-
* BREAKING CHANGE : wp_mail() now returns only true/false to mirror the return values of the original wp_mail().
|
212 |
* Added the possibility of setting the api key or username/password empty
|
213 |
* Added the possibility of selecting the authentication method
|
214 |
* Removed dependency on cURL, now all API requests are made through Wordpress
|
4 |
Tags: email, email reliability, email templates, sendgrid, smtp, transactional email, wp_mail,email infrastructure, email marketing, marketing email, deliverability, email deliverability, email delivery, email server, mail server, email integration, cloud email
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 4.3
|
7 |
+
Stable tag: 1.7.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
132 |
|
133 |
== Changelog ==
|
134 |
|
135 |
+
= 1.7.1 =
|
136 |
+
* Fixed a timeout issue from version 1.7.0.
|
137 |
= 1.7.0 =
|
138 |
+
* BREAKING CHANGE : wp_mail() now returns only true/false to mirror the return values of the original wp_mail(). If you have written something custom in your function.php that depends on the old behavior of the wp_mail() you should check your code to make sure it will still work right with boolean as return value instead of array.
|
139 |
* Added the possibility of setting the api key or username/password empty
|
140 |
* Added the possibility of selecting the authentication method
|
141 |
* Removed dependency on cURL, now all API requests are made through Wordpress
|
209 |
|
210 |
== Upgrade notice ==
|
211 |
|
212 |
+
= 1.7.1 =
|
213 |
+
* Fixed a timeout issue from version 1.7.0.
|
214 |
= 1.7.0 =
|
215 |
+
* BREAKING CHANGE : wp_mail() now returns only true/false to mirror the return values of the original wp_mail(). If you have written something custom in your function.php that depends on the old behavior of the wp_mail() you should check your code to make sure it will still work right with boolean as return value instead of array.
|
216 |
* Added the possibility of setting the api key or username/password empty
|
217 |
* Added the possibility of selecting the authentication method
|
218 |
* Removed dependency on cURL, now all API requests are made through Wordpress
|
wpsendgrid.php
CHANGED
@@ -3,20 +3,13 @@
|
|
3 |
Plugin Name: SendGrid
|
4 |
Plugin URI: http://wordpress.org/plugins/sendgrid-email-delivery-simplified/
|
5 |
Description: Email Delivery. Simplified. SendGrid's cloud-based email infrastructure relieves businesses of the cost and complexity of maintaining custom email systems. SendGrid provides reliable delivery, scalability and real-time analytics along with flexible APIs that make custom integration a breeze.
|
6 |
-
Version: 1.7.
|
7 |
Author: SendGrid
|
8 |
Author URI: http://sendgrid.com
|
9 |
Text Domain: sendgrid-email-delivery-simplified
|
10 |
License: GPLv2
|
11 |
*/
|
12 |
|
13 |
-
add_filter( 'http_request_timeout', 'wpse35826_timeout_extd' );
|
14 |
-
function wpse35826_timeout_extd( $time )
|
15 |
-
{
|
16 |
-
// Default timeout is 5
|
17 |
-
return 60;
|
18 |
-
}
|
19 |
-
|
20 |
// SendGrid configurations
|
21 |
define( 'SENDGRID_CATEGORY', 'wp_sendgrid_plugin' );
|
22 |
define( 'SENDGRID_PLUGIN_SETTINGS', 'settings_page_sendgrid-settings' );
|
3 |
Plugin Name: SendGrid
|
4 |
Plugin URI: http://wordpress.org/plugins/sendgrid-email-delivery-simplified/
|
5 |
Description: Email Delivery. Simplified. SendGrid's cloud-based email infrastructure relieves businesses of the cost and complexity of maintaining custom email systems. SendGrid provides reliable delivery, scalability and real-time analytics along with flexible APIs that make custom integration a breeze.
|
6 |
+
Version: 1.7.1
|
7 |
Author: SendGrid
|
8 |
Author URI: http://sendgrid.com
|
9 |
Text Domain: sendgrid-email-delivery-simplified
|
10 |
License: GPLv2
|
11 |
*/
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
// SendGrid configurations
|
14 |
define( 'SENDGRID_CATEGORY', 'wp_sendgrid_plugin' );
|
15 |
define( 'SENDGRID_PLUGIN_SETTINGS', 'settings_page_sendgrid-settings' );
|