Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Forked from anonymous/gistify546404.php
Last active August 29, 2015 14:27
Show Gist options
  • Save mikejolley/f4e890646cd64d87003c to your computer and use it in GitHub Desktop.
Save mikejolley/f4e890646cd64d87003c to your computer and use it in GitHub Desktop.

Revisions

  1. @invalid-email-address Anonymous created this gist Aug 13, 2015.
    15 changes: 15 additions & 0 deletions gistify546404.php
    Original 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;
    }