Reply To: Sending message to an user


Home Forums Front End PM PRO Sending message to an user Reply To: Sending message to an user

#19357
Shamim Hasan
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 );