diff --git a/CHANGELOG.md b/CHANGELOG.md index c026662..db3d6b6 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Changelog ========= +2.1.0 (2024-07-27) + - Added ability to suppress Track Clicks when we send Reset Password email (it was an issue with domain url in the email) + - Added field to setup Reply-to(header) email for the emails. + - When constants MAILGUN_TRACK_CLICKS, MAILGUN_TRACK_OPENS are used, we disable field on the UI as we do for other fields + 2.0.1 (2024-07-17) - Updated changelog diff --git a/includes/options-page.php b/includes/options-page.php index 87dfbda..22514c2 100755 --- a/includes/options-page.php +++ b/includes/options-page.php @@ -55,6 +55,9 @@ $mailgun_use_api = !is_null($mailgun_use_api_const) ? ((string)(1 * $mailgun_use_api_const)) : $this->get_option('useAPI'); $icon = $mailgun->getAssetsPath() . 'icon-128x128.png'; +$trackClicks = (defined('MAILGUN_TRACK_CLICKS') ? MAILGUN_TRACK_CLICKS : null); +$trackOpens = (defined('MAILGUN_TRACK_OPENS') ? MAILGUN_TRACK_OPENS : null); + $suppressClicks = $this->get_option('suppress_clicks') ?: 'no'; ?> @@ -262,7 +265,7 @@ - > @@ -285,7 +288,7 @@ - > diff --git a/mailgun.php b/mailgun.php index 7553284..3b3ff69 100755 --- a/mailgun.php +++ b/mailgun.php @@ -3,7 +3,7 @@ * Plugin Name: Mailgun * Plugin URI: http://wordpress.org/extend/plugins/mailgun/ * Description: Mailgun integration for WordPress - * Version: 2.0.1 + * Version: 2.1.0 * Requires PHP: 7.4 * Requires at least: 4.4 * Author: Mailgun diff --git a/readme.md b/readme.md index 053c7c8..e41ec25 100755 --- a/readme.md +++ b/readme.md @@ -3,8 +3,8 @@ Mailgun for WordPress Contributors: mailgun, sivel, lookahead.io, m35dev, alanfuller Tags: mailgun, smtp, http, api, mail, email -Tested up to: 6.5.5 -Stable tag: 2.0.1 +Tested up to: 6.6.1 +Stable tag: 2.1.0 License: GPLv2 or later Easily send email from your WordPress site through Mailgun using the HTTP API or SMTP. @@ -132,6 +132,11 @@ MAILGUN_REPLY_TO_ADDRESS Type: string == Changelog == += 2.1.0 (2024-07-27): = +- Added ability to suppress Track Clicks when we send Reset Password email (it was an issue with domain url in the email) +- Added field to setup Reply-to(header) email for the emails. +- When constants MAILGUN_TRACK_CLICKS, MAILGUN_TRACK_OPENS are used, we disable field on the UI as we do for other fields + = 2.0.1 (2024-07-17): = - Updated changelog diff --git a/readme.txt b/readme.txt index 66d1fb0..a238232 100755 --- a/readme.txt +++ b/readme.txt @@ -3,8 +3,8 @@ Mailgun for WordPress Contributors: mailgun, sivel, lookahead.io, m35dev, alanfuller Tags: mailgun, smtp, http, api, mail, email -Tested up to: 6.5.5 -Stable tag: 2.0.1 +Tested up to: 6.6.1 +Stable tag: 2.1.0 License: GPLv2 or later Easily send email from your WordPress site through Mailgun using the HTTP API or SMTP. @@ -129,6 +129,11 @@ MAILGUN_TRACK_OPENS Type: string Choices: 'yes' or 'no' == Changelog == += 2.1.0 (2024-07-27): = +- Added ability to suppress Track Clicks when we send Reset Password email (it was an issue with domain url in the email) +- Added field to setup Reply-to(header) email for the emails. +- When constants MAILGUN_TRACK_CLICKS, MAILGUN_TRACK_OPENS are used, we disable field on the UI as we do for other fields + = 2.0.1 (2024-07-17): = - Updated changelog