Version Description
(2018-08-15) - Fix line breaks in Test Configuration email
Download this release
Release Info
Developer | Mailgun |
Plugin | Mailgun for WordPress |
Version | 1.5.13.1 |
Comparing to | |
See all releases |
Code changes from version 1.5.13 to 1.5.13.1
- CHANGELOG.md +4 -0
- includes/admin.php +1 -1
- mailgun.php +1 -1
- readme.txt +4 -1
CHANGELOG.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1 |
Changelog
|
2 |
=========
|
3 |
|
|
|
|
|
|
|
|
|
4 |
1.5.13 (2018-08-14)
|
5 |
- Default to US region if no region is configured in settings
|
6 |
- Add admin notification about region configuration
|
1 |
Changelog
|
2 |
=========
|
3 |
|
4 |
+
|
5 |
+
1.5.13.1 (2018-08-15)
|
6 |
+
- Fix line breaks in Test Configuration email
|
7 |
+
|
8 |
1.5.13 (2018-08-14)
|
9 |
- Default to US region if no region is configured in settings
|
10 |
- Add admin notification about region configuration
|
includes/admin.php
CHANGED
@@ -443,7 +443,7 @@ class MailgunAdmin extends Mailgun
|
|
443 |
$result = wp_mail(
|
444 |
$admin_email,
|
445 |
__('Mailgun WordPress Plugin Test', 'mailgun'),
|
446 |
-
sprintf(__(
|
447 |
array('Content-Type: text/plain')
|
448 |
);
|
449 |
|
443 |
$result = wp_mail(
|
444 |
$admin_email,
|
445 |
__('Mailgun WordPress Plugin Test', 'mailgun'),
|
446 |
+
sprintf(__("This is a test email generated by the Mailgun WordPress plugin.\n\nIf you have received this message, the requested test has succeeded.\n\nThe sending region is set to %s.\n\nThe method used to send this email was: %s.", 'mailgun'), $region, $method),
|
447 |
array('Content-Type: text/plain')
|
448 |
);
|
449 |
|
mailgun.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Mailgun
|
5 |
* Plugin URI: http://wordpress.org/extend/plugins/mailgun/
|
6 |
* Description: Mailgun integration for WordPress
|
7 |
-
* Version: 1.5.13
|
8 |
* Author: Mailgun
|
9 |
* Author URI: http://www.mailgun.com/
|
10 |
* License: GPLv2 or later
|
4 |
* Plugin Name: Mailgun
|
5 |
* Plugin URI: http://wordpress.org/extend/plugins/mailgun/
|
6 |
* Description: Mailgun integration for WordPress
|
7 |
+
* Version: 1.5.13.1
|
8 |
* Author: Mailgun
|
9 |
* Author URI: http://www.mailgun.com/
|
10 |
* License: GPLv2 or later
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Contributors: Mailgun, sivel, lookahead.io, m35dev
|
|
5 |
Tags: mailgun, smtp, http, api, mail, email
|
6 |
Requires at least: 3.3
|
7 |
Tested up to: 4.9.8
|
8 |
-
Stable tag: 1.5.13
|
9 |
License: GPLv2 or later
|
10 |
|
11 |
|
@@ -128,6 +128,9 @@ MAILGUN_FROM_ADDRESS Type: string
|
|
128 |
|
129 |
== Changelog ==
|
130 |
|
|
|
|
|
|
|
131 |
= 1.5.13 (2018-08-14): =
|
132 |
- Default to US region if no region is configured in settings
|
133 |
- Add admin notification about region configuration
|
5 |
Tags: mailgun, smtp, http, api, mail, email
|
6 |
Requires at least: 3.3
|
7 |
Tested up to: 4.9.8
|
8 |
+
Stable tag: 1.5.13.1
|
9 |
License: GPLv2 or later
|
10 |
|
11 |
|
128 |
|
129 |
== Changelog ==
|
130 |
|
131 |
+
= 1.5.13.1 (2018-08-15)
|
132 |
+
- Fix line breaks in Test Configuration email
|
133 |
+
|
134 |
= 1.5.13 (2018-08-14): =
|
135 |
- Default to US region if no region is configured in settings
|
136 |
- Add admin notification about region configuration
|