Mailgun for WordPress - Version 1.3.1

Version Description

(2014-11-19): = * Switched to Semantic Versioning * Fixed issue with campaigns and tags

Download this release

Release Info

Developer Mailgun
Plugin Icon 128x128 Mailgun for WordPress
Version 1.3.1
Comparing to
See all releases

Code changes from version 1.3 to 1.3.1

Files changed (3) hide show
  1. includes/wp-mail.php +1 -1
  2. mailgun.php +1 -1
  3. readme.txt +8 -1
includes/wp-mail.php CHANGED
@@ -209,7 +209,7 @@ function wp_mail( $to, $subject, $message, $headers = '', $attachments = array()
209
  foreach($value as $key => $value){
210
  $payload .= '--' . $boundary;
211
  $payload .= "\r\n";
212
- $payload .= 'Content-Disposition: form-data; name="' . $parent_key . '[' . $key . ']"' . "\r\n\r\n";
213
  $payload .= $value;
214
  $payload .= "\r\n";
215
  }
209
  foreach($value as $key => $value){
210
  $payload .= '--' . $boundary;
211
  $payload .= "\r\n";
212
+ $payload .= 'Content-Disposition: form-data; name="' . $parent_key . "\"\r\n\r\n";
213
  $payload .= $value;
214
  $payload .= "\r\n";
215
  }
mailgun.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Mailgun
4
  * Plugin URI: http://wordpress.org/extend/plugins/mailgun/
5
  * Description: Mailgun integration for WordPress
6
- * Version: 1.3
7
  * Author: Mailgun
8
  * Author URI: http://www.mailgun.com/
9
  * License: GPLv2 or later
3
  * Plugin Name: Mailgun
4
  * Plugin URI: http://wordpress.org/extend/plugins/mailgun/
5
  * Description: Mailgun integration for WordPress
6
+ * Version: 1.3.1
7
  * Author: Mailgun
8
  * Author URI: http://www.mailgun.com/
9
  * License: GPLv2 or later
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: Mailgun, sivel
3
  Tags: mailgun, smtp, http, api, mail, email
4
  Requires at least: 3.3
5
  Tested up to: 3.9
6
- Stable tag: 1.3
7
  License: GPLv2 or later
8
 
9
  Easily send email from your WordPress site through Mailgun using the HTTP API or SMTP.
@@ -62,6 +62,13 @@ Initial Release
62
 
63
  == ChangeLog ==
64
 
 
 
 
 
 
 
 
65
  = 1.2 (2014-08-19): =
66
  * Fixed errors related to undefined variable. https://github.com/mailgun/wordpress-plugin/pull/3
67
 
3
  Tags: mailgun, smtp, http, api, mail, email
4
  Requires at least: 3.3
5
  Tested up to: 3.9
6
+ Stable tag: 1.3.1
7
  License: GPLv2 or later
8
 
9
  Easily send email from your WordPress site through Mailgun using the HTTP API or SMTP.
62
 
63
  == ChangeLog ==
64
 
65
+ = 1.3.1 (2014-11-19): =
66
+ * Switched to Semantic Versioning
67
+ * Fixed issue with campaigns and tags
68
+
69
+ = 1.3 (2014-08-25): =
70
+ * Added check to ignore empty attachments
71
+
72
  = 1.2 (2014-08-19): =
73
  * Fixed errors related to undefined variable. https://github.com/mailgun/wordpress-plugin/pull/3
74