Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created March 9, 2015 17:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikejolley/c420f57d0ef10cb4a32f to your computer and use it in GitHub Desktop.
Save mikejolley/c420f57d0ef10cb4a32f to your computer and use it in GitHub Desktop.
Job Applications - CC email
<?php
add_filter( 'create_job_application_notification_headers', 'job_applications_cc_email' );
function job_applications_cc_email( $headers ) {
$headers[] = 'Cc:email@email.com';
return $headers;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment