Skip to content

Instantly share code, notes, and snippets.

@davoraltman
Last active July 3, 2017 16:38
Show Gist options
  • Save davoraltman/7ac0d8c4a84a82f9209a7d32cb42ec8c to your computer and use it in GitHub Desktop.
Save davoraltman/7ac0d8c4a84a82f9209a7d32cb42ec8c to your computer and use it in GitHub Desktop.
Change the From details in the Application email
add_filter('create_job_application_notification_headers','dm_job_application_headers');
function dm_job_application_headers($headers) {
$headers[] = 'From: ' . 'My Custom From Name' . ' <[email protected]>';
return $headers;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment