-
-
Save mikejolley/f4e890646cd64d87003c to your computer and use it in GitHub Desktop.
Revisions
-
There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ <?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; }