Created
March 1, 2024 23:27
-
-
Save tripflex/6b6ffe225ed596eeb1e8234b7246da42 to your computer and use it in GitHub Desktop.
Set reply-to for every email sent from WP Job Manager Emails (overrides any configuration in templates)
This file contains 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 | |
add_filter( 'job_manager_emails_send_reply_to', 'smyles_custom_reply_to' ); | |
function smyles_custom_reply_to( $reply_to ){ | |
return '[email protected]'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment