Changeset 3432685
- Timestamp:
- 01/05/2026 11:27:14 AM (3 months ago)
- Location:
- check-email/trunk
- Files:
-
- 5 edited
-
changelog.txt (modified) (1 diff)
-
check-email.php (modified) (2 diffs)
-
include/Core/Check_Email_Logger.php (modified) (1 diff)
-
include/helper-function.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
check-email/trunk/changelog.txt
r3410930 r3432685 1 1 == Changelog == 2 = v2.0.11 - 05/01/2026 = 3 - Remove: Removed BFCM Banner #156 4 2 5 = v2.0.10 - 04/12/2025 = 3 6 - Feature Added: Error Log notification #46 -
check-email/trunk/check-email.php
r3410930 r3432685 4 4 * Description: Check & Log email allows you to test if your WordPress installation is sending emails correctly and logs every email. 5 5 * Author: checkemail 6 * Version: 2.0.1 06 * Version: 2.0.11 7 7 * Author URI: https://check-email.tech/ 8 8 * Plugin URI: https://check-email.tech/ … … 42 42 define( 'CK_MAIL_PATH', dirname( __FILE__ ) ); 43 43 define( 'CK_MAIL_URL', plugin_dir_url( __FILE__ ) ); 44 define( 'CK_MAIL_VERSION', '2.0.1 0' );44 define( 'CK_MAIL_VERSION', '2.0.11' ); 45 45 46 46 require_once(CK_MAIL_PATH. "/include/helper-function.php" ); -
check-email/trunk/include/Core/Check_Email_Logger.php
r3410930 r3432685 196 196 apply_filters('wp_check_email_failed', $mail_error_data, $mail_error_message); 197 197 $this->mark_email_log_as_failed($mail_error_data, $mail_error_message ); 198 }198 } 199 199 200 200 public function log_buddy_press_email( $status, $bp_mail ) { -
check-email/trunk/include/helper-function.php
r3410930 r3432685 1307 1307 1308 1308 } 1309 1310 /* * BFCM Banner Integration1311 * Loads assets from assets/css and assets/js1312 */1313 add_action('admin_enqueue_scripts', 'check_mail_enqueue_bfcm_assets');1314 1315 function check_mail_enqueue_bfcm_assets($hook) {1316 1317 //var_dump($hook);1318 if ( $hook !== 'check-log-email_page_check-email-settings'1319 && $hook !== 'check-log-email_page_check-email-logs'1320 && $hook !== 'check-log-email_page_spam-analyzer'1321 && $hook !== 'check-log-email_page_check-email-error-tracker' ) {1322 return;1323 }1324 1325 /*if ( ! isset($_GET['page']) || $_GET['page'] !== 'setting_page_check-email-dashboard' ) {1326 return;1327 }*/1328 1329 // 2. define settings1330 $expiry_date_str = '2025-12-25 23:59:59';1331 $offer_link = 'https://check-email.tech/bfcm-2025/';1332 1333 // 3. Expiry Check (Server Side)1334 if ( current_time('timestamp') > strtotime($expiry_date_str) ) {1335 return;1336 }1337 1338 // 4. Register & Enqueue CSS1339 wp_enqueue_style(1340 'ck-bfcm-style',1341 CK_MAIL_URL. 'assets/css/bfcm-style.css',1342 array(),1343 CK_MAIL_VERSION1344 );1345 1346 // 5. Register & Enqueue JS1347 wp_enqueue_script(1348 'ck-bfcm-script',1349 CK_MAIL_URL. 'assets/js/bfcm-script.js',1350 array('jquery'), // jQuery dependency1351 CK_MAIL_VERSION,1352 true1353 );1354 1355 // 6. Data Pass (PHP to JS)1356 wp_localize_script('ck-bfcm-script', 'bfcmData', array(1357 'targetDate' => $expiry_date_str,1358 'offerLink' => $offer_link1359 ));1360 } -
check-email/trunk/readme.txt
r3410930 r3432685 5 5 Tested up to: 6.9 6 6 Requires PHP: 5.6 7 Stable tag: 2.0.1 07 Stable tag: 2.0.11 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 124 124 == Changelog == 125 125 126 = v2.0.11 - 05/01/2026 = 127 - Remove: Removed BFCM Banner #156 128 126 129 = v2.0.10 - 04/12/2025 = 127 130 - Feature Added: Error Log notification #46
Note: See TracChangeset
for help on using the changeset viewer.