Home › Forums › Front End PM PRO › Sending message to an user › Reply To: Sending message to an user
November 29, 2018 at 6:08 pm
#19357
shamim
Keymaster
Yes, it is possible.
add following code in your theme’s (child theme’s if any) functions.php
add_filter( 'fep_filter_before_email_send', function( $content, $mgs ){
$content['headers']['reply-to'] = 'Reply-To: ' . fep_get_userdata( $mgs->mgs_author, 'user_email', 'id' );
return $content;
}, 10, 2 );