Version Description
- Fixed an issue with the Reply-To field
Download this release
Release Info
Developer | team-rs |
Plugin | SendGrid |
Version | 1.9.5 |
Comparing to | |
See all releases |
Code changes from version 1.9.4 to 1.9.5
- lib/sendgrid/sendgrid-wp-mail.php +1 -1
- readme.txt +6 -2
- wpsendgrid.php +1 -1
lib/sendgrid/sendgrid-wp-mail.php
CHANGED
@@ -376,7 +376,7 @@ function wp_mail( $to, $subject, $message, $headers = '', $attachments = array()
|
|
376 |
$mail->setBccs( $bcc );
|
377 |
}
|
378 |
|
379 |
-
if ( ! isset( $replyto ) ) {
|
380 |
$replyto = trim( Sendgrid_Tools::get_reply_to() );
|
381 |
}
|
382 |
|
376 |
$mail->setBccs( $bcc );
|
377 |
}
|
378 |
|
379 |
+
if ( ! isset( $replyto ) or false == $replyto ) {
|
380 |
$replyto = trim( Sendgrid_Tools::get_reply_to() );
|
381 |
}
|
382 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: team-rs
|
|
3 |
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: 4.2
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.9.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -230,6 +230,8 @@ You need to enable the use of the First Name and Last Name fields from the setti
|
|
230 |
|
231 |
== Changelog ==
|
232 |
|
|
|
|
|
233 |
= 1.9.4 =
|
234 |
* Added Unsubscribe Group option
|
235 |
* Improved email validation
|
@@ -352,6 +354,8 @@ You need to enable the use of the First Name and Last Name fields from the setti
|
|
352 |
|
353 |
== Upgrade notice ==
|
354 |
|
|
|
|
|
355 |
= 1.9.4 =
|
356 |
* Added Unsubscribe Group option
|
357 |
* Improved email validation
|
3 |
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: 4.2
|
6 |
+
Tested up to: 4.6
|
7 |
+
Stable tag: 1.9.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
230 |
|
231 |
== Changelog ==
|
232 |
|
233 |
+
= 1.9.5 =
|
234 |
+
* Fixed an issue with the Reply-To field
|
235 |
= 1.9.4 =
|
236 |
* Added Unsubscribe Group option
|
237 |
* Improved email validation
|
354 |
|
355 |
== Upgrade notice ==
|
356 |
|
357 |
+
= 1.9.5 =
|
358 |
+
* Fixed an issue with the Reply-To field
|
359 |
= 1.9.4 =
|
360 |
* Added Unsubscribe Group option
|
361 |
* Improved email validation
|
wpsendgrid.php
CHANGED
@@ -3,7 +3,7 @@
|
|
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.9.
|
7 |
Author: SendGrid
|
8 |
Author URI: http://sendgrid.com
|
9 |
Text Domain: sendgrid-email-delivery-simplified
|
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.9.5
|
7 |
Author: SendGrid
|
8 |
Author URI: http://sendgrid.com
|
9 |
Text Domain: sendgrid-email-delivery-simplified
|