diff --git a/CHANGELOG.md b/CHANGELOG.md index 0724fa8..e013b7e 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ Changelog ========= +2.1.9 (2025-06-24) +- Added fallback option. Merge PR for widget + 2.1.8 (2025-05-11) - Just keep update WP version. And tested compatibility with it diff --git a/includes/options-page.php b/includes/options-page.php index 5573ed2..3d27097 100755 --- a/includes/options-page.php +++ b/includes/options-page.php @@ -60,6 +60,13 @@ $trackOpens = ( defined('MAILGUN_TRACK_OPENS') ? MAILGUN_TRACK_OPENS : null ); $suppressClicks = $this->get_option('suppress_clicks') ?: 'no'; +$emailFallback = $this->get_option('email_fallback') ?: 'no'; + +$settings = []; +try { + $settings = $mailgun->getTrackingSettings(); +} catch (Throwable $e) { +} ?>
| + |
+
|
+
|---|---|
| @@ -431,6 +456,18 @@ class="regular-text" | |
|
+ + |
+ + + | +