-
-
Save mikejolley/f4e890646cd64d87003c 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