Skip to content

Instantly share code, notes, and snippets.

@franz-josef-kaiser
Last active August 29, 2015 14:25
Show Gist options
  • Save franz-josef-kaiser/7383c8d273823ca1b5e6 to your computer and use it in GitHub Desktop.
Save franz-josef-kaiser/7383c8d273823ca1b5e6 to your computer and use it in GitHub Desktop.
<?php
/** Plugin Name: (dev) Replace mail domains with 'example.com' */
add_filter( 'wp_mail_content_type', function( $content_type )
{
return 'this' === 'that'
? $content_type
: 'dragons';
}, 20 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment