Version Description
- Remove $plugin variable to avoid conflict with other plugins
Download this release
Release Info
Developer | team-rs |
Plugin | SendGrid |
Version | 1.6.6 |
Comparing to | |
See all releases |
Code changes from version 1.6.5 to 1.6.6
- lib/class-sendgrid-tools.php +1 -1
- readme.txt +5 -1
- wpsendgrid.php +2 -4
lib/class-sendgrid-tools.php
CHANGED
@@ -11,7 +11,7 @@ class Sendgrid_Tools
|
|
11 |
*/
|
12 |
public static function check_username_password( $username, $password )
|
13 |
{
|
14 |
-
$url = 'https://sendgrid.com/api/profile.get.json?';
|
15 |
$url .= "api_user=" . urlencode($username) . "&api_key=" . urlencode($password);
|
16 |
|
17 |
$response = wp_remote_get( $url );
|
11 |
*/
|
12 |
public static function check_username_password( $username, $password )
|
13 |
{
|
14 |
+
$url = 'https://api.sendgrid.com/api/profile.get.json?';
|
15 |
$url .= "api_user=" . urlencode($username) . "&api_key=" . urlencode($password);
|
16 |
|
17 |
$response = wp_remote_get( $url );
|
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.6.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -124,6 +124,8 @@ Create a SendGrid account at <a href="http://sendgrid.com/partner/wordpress" tar
|
|
124 |
|
125 |
== Changelog ==
|
126 |
|
|
|
|
|
127 |
= 1.6.5 =
|
128 |
* Add configurable port number for SMTP method, Specify full path for sendgrid php library, Fix special characters and new lines issues
|
129 |
= 1.6.4 =
|
@@ -183,6 +185,8 @@ Create a SendGrid account at <a href="http://sendgrid.com/partner/wordpress" tar
|
|
183 |
|
184 |
== Upgrade notice ==
|
185 |
|
|
|
|
|
186 |
= 1.6.5 =
|
187 |
* Add configurable port number for SMTP method, Specify full path for sendgrid php library, Fix special characters and new lines issues
|
188 |
= 1.6.4 =
|
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.6.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
124 |
|
125 |
== Changelog ==
|
126 |
|
127 |
+
= 1.6.6 =
|
128 |
+
* Remove $plugin variable to avoid conflict with other plugins
|
129 |
= 1.6.5 =
|
130 |
* Add configurable port number for SMTP method, Specify full path for sendgrid php library, Fix special characters and new lines issues
|
131 |
= 1.6.4 =
|
185 |
|
186 |
== Upgrade notice ==
|
187 |
|
188 |
+
= 1.6.6 =
|
189 |
+
* Remove $plugin variable to avoid conflict with other plugins
|
190 |
= 1.6.5 =
|
191 |
* Add configurable port number for SMTP method, Specify full path for sendgrid php library, Fix special characters and new lines issues
|
192 |
= 1.6.4 =
|
wpsendgrid.php
CHANGED
@@ -3,15 +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.6.
|
7 |
Author: SendGrid
|
8 |
Author URI: http://sendgrid.com
|
9 |
Text Domain: sendgrid-email-delivery-simplified
|
10 |
License: GPLv2
|
11 |
*/
|
12 |
|
13 |
-
$plugin = plugin_basename( __FILE__ );
|
14 |
-
|
15 |
if ( version_compare( phpversion(), '5.3.0', '<' ) ) {
|
16 |
add_action( 'admin_notices', 'php_version_error' );
|
17 |
|
@@ -57,7 +55,7 @@ else
|
|
57 |
require_once plugin_dir_path( __FILE__ ) . '/lib/class-sendgrid-smtp.php';
|
58 |
|
59 |
// Initialize SendGrid Settings
|
60 |
-
new Sendgrid_Settings(
|
61 |
|
62 |
// Initialize SendGrid Statistics
|
63 |
new Sendgrid_Statistics();
|
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.6.6
|
7 |
Author: SendGrid
|
8 |
Author URI: http://sendgrid.com
|
9 |
Text Domain: sendgrid-email-delivery-simplified
|
10 |
License: GPLv2
|
11 |
*/
|
12 |
|
|
|
|
|
13 |
if ( version_compare( phpversion(), '5.3.0', '<' ) ) {
|
14 |
add_action( 'admin_notices', 'php_version_error' );
|
15 |
|
55 |
require_once plugin_dir_path( __FILE__ ) . '/lib/class-sendgrid-smtp.php';
|
56 |
|
57 |
// Initialize SendGrid Settings
|
58 |
+
new Sendgrid_Settings( plugin_basename( __FILE__ ) );
|
59 |
|
60 |
// Initialize SendGrid Statistics
|
61 |
new Sendgrid_Statistics();
|