Last active
October 26, 2017 09:49
-
-
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/)
This file contains 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 characters
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 = '[email protected]'; | |
return $send_to; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment