i'm trying to append to facebook message form . something that the user has already written in my app. with a click on send via facebook message , the message form should contain the title and the subject.
here is what i'm trying to do. i make it to work with Emails but to facebook i found it kind though
kosh = "\n Subject Name: "+msg['title']+"\n Submission Date: "+msg['date']+'\n Submission Time If Any : '+msg['time']+'\n Description: '+msg['desc']+"\n\n Hi I Created this Assignment Reminder using Unitar Staff Directory\n download it now!! From Android Market & BlackBerry App World\n"; var subject = msg['title']; var mailto_link = 'https://www.facebook.com/dialog/send?'; mailto_link += '&subject=' + encodeURIComponent(subject); mailto_link += '&body=' + encodeURIComponent(kosh); window.location.href =mailto_link; },
anyone could help me how to figure it out.. thanks in advance.