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 @@
- |