Send Message form
Posted: 13 Feb 2016, 15:12
how to include "Send message" form in property details page , without including pop up link of "Send Message"..
Discussion of company’s products and Yii framework
https://monoray.net/forum/
<?php
echo '<div id="send-message" data-href="'.$model->getUrlSendEmail().'"></div>';
Yii::app()->clientScript->registerScript('ajax-messages', '
$.ajax({
method: "get",
url: $("#send-message").data("href"),
success: function(result){
$("#send-message").html(result);
}
});
', CClientScript::POS_READY);
?>