Created
December 4, 2018 17:17
-
-
Save jeremyescott/5b0e723c1869785f7f71de22246bf335 to your computer and use it in GitHub Desktop.
Matador Application Confirmation Candidate From
This file contains hidden or 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
<?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 protected]' . '>'; | |
} | |
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