Created
August 13, 2015 18:05
-
-
Save anonymous/f5609ee56db08b4d92c8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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:[email protected]'; | |
return $headers; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment