Skip to content

Instantly share code, notes, and snippets.

@htdat
Last active October 26, 2017 09:49
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 htdat/2a0c1b600f1c41d821eafe24ac26c4b8 to your computer and use it in GitHub Desktop.
Save htdat/2a0c1b600f1c41d821eafe24ac26c4b8 to your computer and use it in GitHub Desktop.
WPJM Applicants - Route all employer notification emails to a specific email. (https://wpjobmanager.com/document/applications/)
add_filter('create_job_application_notification_recipient', 'htdat_create_job_application_notification_recipient', 10, 3);
function htdat_create_job_application_notification_recipient ($send_to, $job_id, $application_id){
$send_to = 'all@email.local';
return $send_to;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment