Skip to content

Instantly share code, notes, and snippets.

@davoraltman
Last active July 4, 2017 09:03
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 davoraltman/75a08a4e971a3d470b558078779b737b to your computer and use it in GitHub Desktop.
Save davoraltman/75a08a4e971a3d470b558078779b737b to your computer and use it in GitHub Desktop.
Change the From: details for the Applications Candidate notification
add_filter('create_job_application_candidate_notification_headers','dm_job_candidate_application_headers');
function dm_job_candidate_application_headers($headers) {
$headers[] = 'From: ' . 'My Custom From Name' . ' <example@example.com>';
return $headers;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment