Applications: CCing an email to all posted applications

← Back to Applications

Please note that all code examples on this site are provided for reference/guidance only, and we cannot guarantee that they will always work as expected. Our support policy does not include assistance with modifying or debugging code from any code examples, and they may be changed or removed if we find they no longer work due to changes in our plugins.


Please place the code within the Code Snippets plugin.

The following example would carbon copy (‘cc:’) the address `email@email.com`.

Please note that this will then send every employer notification to both the employer’s email address and the address added in the code below, so it’s unsuitable if you must cc a different person depending on the employer.

add_filter( 'create_job_application_notification_headers', 'job_applications_cc_email' );

function job_applications_cc_email( $headers ) {
 $headers[] = 'Cc:email@email.com,email_2@email.com';
 return $headers;
 }
Applications Documentation