You can send message to your friends using send pop up from Graph API:
here is code you need in body part of page
<div id="fb-root"> </div>
<script type="text/javascript" src="https://connect.facebook.net/en_GB/all.js"></script>
<div class="footer">
<br />
<script type="text/javascript">
FB.init({
appId: '<%=lAppId %>',
status: true, // check login status
cookie: true, // enable cookies to allow the server to access the session
xfbml: true // parse XFBML
});
</script>
</div>
Here is Java Script function you need to call in order to open send popup (window which will allow you to select friends to send message)
function invite() {
var lLinkToPublish=GeAppUrl();
var lTextToPublish=GetPublishText();
var lTitleText=GetInvitationTitle();
FB.ui({
method: 'send',
name: lTitleText,
display: 'popup',
description: lTextToPublish,
link: lLinkToPublish ,
});
}