Skip to content

Instantly share code, notes, and snippets.

@mindctrl
Created December 6, 2025 04:02
Show Gist options
  • Select an option

  • Save mindctrl/1906f4f7fa9c212eefa3489884aeed0c to your computer and use it in GitHub Desktop.

Select an option

Save mindctrl/1906f4f7fa9c212eefa3489884aeed0c to your computer and use it in GitHub Desktop.
Disable WP Mail SMTP usage tracking
<?php
add_action( 'plugins_loaded', function() {
add_filter( 'wp_mail_smtp_usage_tracking_is_enabled', '__return_false' );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment