Version Description
(2017-09-05): =
- Change default click tracking setting to htmlonly
(https://github.com/mailgun/wordpress-plugin/pull/58)
- Change PHPMailer set-up stanza to use TLS
Download this release
Release Info
Developer | Mailgun |
Plugin | Mailgun for WordPress |
Version | 1.5.8.5 |
Comparing to | |
See all releases |
Code changes from version 1.5.8.4 to 1.5.8.5
- .gitignore +0 -1
- CHANGELOG.md +4 -0
- includes/options-page.php +1 -1
- mailgun.php +2 -2
- readme.txt +5 -1
.gitignore
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
svn/
|
|
CHANGELOG.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1 |
Changelog
|
2 |
=========
|
3 |
|
|
|
|
|
|
|
|
|
4 |
1.5.8.4 (2017-06-28):
|
5 |
- Packaging fix which takes care of an odd filtering issue (https://wordpress.org/support/topic/1-5-8-3-broke-the-mg_mutate_message_body-filter)
|
6 |
|
1 |
Changelog
|
2 |
=========
|
3 |
|
4 |
+
1.5.8.5 (2017-09-05):
|
5 |
+
- Change default click tracking setting to `htmlonly` (https://github.com/mailgun/wordpress-plugin/pull/58)
|
6 |
+
- Change PHPMailer set-up stanza to use TLS
|
7 |
+
|
8 |
1.5.8.4 (2017-06-28):
|
9 |
- Packaging fix which takes care of an odd filtering issue (https://wordpress.org/support/topic/1-5-8-3-broke-the-mg_mutate_message_body-filter)
|
10 |
|
includes/options-page.php
CHANGED
@@ -96,8 +96,8 @@
|
|
96 |
</th>
|
97 |
<td>
|
98 |
<select name="mailgun[track-clicks]">
|
99 |
-
<option value="yes"<?php selected('yes', $this->get_option('track-clicks')); ?>><?php _e('Yes', 'mailgun'); ?></option>
|
100 |
<option value="htmlonly"<?php selected('htmlonly', $this->get_option('track-clicks')); ?>><?php _e('HTML Only', 'mailgun'); ?></option>
|
|
|
101 |
<option value="no"<?php selected('no', $this->get_option('track-clicks')); ?>><?php _e('No', 'mailgun'); ?></option>
|
102 |
</select>
|
103 |
<p class="description"><?php _e('If enabled, Mailgun will and track links.', 'mailgun'); ?> <a href="http://documentation.mailgun.com/user_manual.html#tracking-clicks" target="_blank">Click Tracking Documentation</a></p>
|
96 |
</th>
|
97 |
<td>
|
98 |
<select name="mailgun[track-clicks]">
|
|
|
99 |
<option value="htmlonly"<?php selected('htmlonly', $this->get_option('track-clicks')); ?>><?php _e('HTML Only', 'mailgun'); ?></option>
|
100 |
+
<option value="yes"<?php selected('yes', $this->get_option('track-clicks')); ?>><?php _e('Yes', 'mailgun'); ?></option>
|
101 |
<option value="no"<?php selected('no', $this->get_option('track-clicks')); ?>><?php _e('No', 'mailgun'); ?></option>
|
102 |
</select>
|
103 |
<p class="description"><?php _e('If enabled, Mailgun will and track links.', 'mailgun'); ?> <a href="http://documentation.mailgun.com/user_manual.html#tracking-clicks" target="_blank">Click Tracking Documentation</a></p>
|
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.8.
|
8 |
* Author: Mailgun
|
9 |
* Author URI: http://www.mailgun.com/
|
10 |
* License: GPLv2 or later
|
@@ -123,7 +123,7 @@ class Mailgun
|
|
123 |
$phpmailer->Username = $username;
|
124 |
$phpmailer->Password = $password;
|
125 |
|
126 |
-
$phpmailer->SMTPSecure = (bool) $secure ? '
|
127 |
// Without this line... wp_mail for SMTP-only will always return false. But why? :(
|
128 |
$phpmailer->Debugoutput = 'mg_smtp_debug_output';
|
129 |
$phpmailer->SMTPDebug = 2;
|
4 |
* Plugin Name: Mailgun
|
5 |
* Plugin URI: http://wordpress.org/extend/plugins/mailgun/
|
6 |
* Description: Mailgun integration for WordPress
|
7 |
+
* Version: 1.5.8.5
|
8 |
* Author: Mailgun
|
9 |
* Author URI: http://www.mailgun.com/
|
10 |
* License: GPLv2 or later
|
123 |
$phpmailer->Username = $username;
|
124 |
$phpmailer->Password = $password;
|
125 |
|
126 |
+
$phpmailer->SMTPSecure = (bool) $secure ? 'tls' : 'none';
|
127 |
// Without this line... wp_mail for SMTP-only will always return false. But why? :(
|
128 |
$phpmailer->Debugoutput = 'mg_smtp_debug_output';
|
129 |
$phpmailer->SMTPDebug = 2;
|
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.8
|
8 |
-
Stable tag: 1.5.8.
|
9 |
License: GPLv2 or later
|
10 |
|
11 |
|
@@ -126,6 +126,10 @@ MAILGUN_FROM_ADDRESS Type: string
|
|
126 |
|
127 |
== Changelog ==
|
128 |
|
|
|
|
|
|
|
|
|
129 |
= 1.5.8.4 (2017-06-28): =
|
130 |
- Packaging fix which takes care of an odd filtering issue (https://wordpress.org/support/topic/1-5-8-3-broke-the-mg_mutate_message_body-filter)
|
131 |
|
5 |
Tags: mailgun, smtp, http, api, mail, email
|
6 |
Requires at least: 3.3
|
7 |
Tested up to: 4.8
|
8 |
+
Stable tag: 1.5.8.5
|
9 |
License: GPLv2 or later
|
10 |
|
11 |
|
126 |
|
127 |
== Changelog ==
|
128 |
|
129 |
+
= 1.5.8.5 (2017-09-05): =
|
130 |
+
- Change default click tracking setting to `htmlonly` (https://github.com/mailgun/wordpress-plugin/pull/58)
|
131 |
+
- Change PHPMailer set-up stanza to use TLS
|
132 |
+
|
133 |
= 1.5.8.4 (2017-06-28): =
|
134 |
- Packaging fix which takes care of an odd filtering issue (https://wordpress.org/support/topic/1-5-8-3-broke-the-mg_mutate_message_body-filter)
|
135 |
|