Skip to content

Instantly share code, notes, and snippets.

Created August 13, 2015 18:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/f5609ee56db08b4d92c8 to your computer and use it in GitHub Desktop.
Save anonymous/f5609ee56db08b4d92c8 to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: CC an Email on Applications
* Description: Does what it says on the tin.
* Version: 1.0
* Author: Adam Heckler
* License: GPL v3
*/
add_filter( 'create_job_application_notification_headers', 'job_applications_cc_email' );
function job_applications_cc_email( $headers ) {
$headers[] = 'Cc:jasoniqueen@gmail.com';
return $headers;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment