Skip to content

Instantly share code, notes, and snippets.

@davoraltman
Last active July 3, 2017 16:26
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/436d4706a9c73c990563e5ea112818e5 to your computer and use it in GitHub Desktop.
Save davoraltman/436d4706a9c73c990563e5ea112818e5 to your computer and use it in GitHub Desktop.
Change From details in the Application email in WPJM
add_filter('create_job_application_notification_headers','daki_job_application_headers');
function daki_job_application_headers($headers) {
$headers[] = 'From: ' . 'Salon Express' . ' <info@salonexpress.com.au>';
return $headers;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment