Skip to content

Instantly share code, notes, and snippets.

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 jeremyescott/5b0e723c1869785f7f71de22246bf335 to your computer and use it in GitHub Desktop.
Save jeremyescott/5b0e723c1869785f7f71de22246bf335 to your computer and use it in GitHub Desktop.
Matador Application Confirmation Candidate From
<?php
/**
* Filter: Matador Application Confirmation Candidate From
*
* Modify the "From" name and email address for the Application Confirmation for Candidates email.
*
* @var string $from
* @var array $data
*/
custom_matador_application_confirmation_candidate_from( $from, $data ) {
return 'From: ' . 'FROM NAME' . '<' . 'EMAIL@EMAIL.COM' . '>';
}
add_filter( 'matador_application_confirmation_candidate_from', 'custom_matador_application_confirmation_candidate_from', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment