Hi thanks for the reply
the issue got fixed
In the following file of the plugin
tpl_property_view.php
on the following line replaced “?msg” with “&msg” and it worked
sendmail($_REQUEST[‘inq_name’], $et_re_agent_email, $_REQUEST[‘inq_email’], ‘Message from ‘.bloginfo(‘name’),$inq_msg);
wp_redirect( get_permalink($post->ID).’?msg=1′);
Replaced with
sendmail($_REQUEST[‘inq_name’], $et_re_agent_email, $_REQUEST[‘inq_email’], ‘Message from ‘.bloginfo(‘name’),$inq_msg);
wp_redirect( get_permalink($post->ID).’&msg=1′);