Reply To: Email 'to' field not populating


Home Forums Front End PM PRO Email 'to' field not populating Reply To: Email 'to' field not populating

#5698
Shamim Hasan
Keymaster

So you are using in ajax?
Please use following


$args = array(
    'fepaction' => 'newmessage',
    'fep_to' => get_the_author_meta( 'user_nicename')
);
$url = add_query_arg( $args, get_permalink( fep_page_id() ) );

Let me know.