Skip to content

Instantly share code, notes, and snippets.

@tripflex
Created March 1, 2024 23:27
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 tripflex/6b6ffe225ed596eeb1e8234b7246da42 to your computer and use it in GitHub Desktop.
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)
<?php
add_filter( 'job_manager_emails_send_reply_to', 'smyles_custom_reply_to' );
function smyles_custom_reply_to( $reply_to ){
return 'reply-to@me.com';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment