I want the owner of a post to receive an Email every time someone comments on his post. How do I get that message to Rails?
Thanks in advance!
I want the owner of a post to receive an Email every time someone comments on his post. How do I get that message to Rails?
Thanks in advance!
This is very similar to my answer on this SO question.
Instead of attaching to the "edge.create" event, attach to the "comment.create" event
FB.Event.subscribe('comment.create', function(response) {
// Fire an AJAX call to send an email to your post's owner
});