Advertisement
shelob9

Untitled

Jul 27th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. add_filter( 'wp_mail', function( $args ){
  2. if( class_exists( 'WP_Papertrail_API' ) ){
  3. WP_Papertrail_API::log(
  4. [
  5. 'to' => $args[ 'to' ],
  6. 'subject' => $args[ 'subject' ]
  7. ]
  8. , 'wpmail' );
  9. }
  10. return $args;
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement