1

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!

JayX
  • 1,754
  • 1
  • 18
  • 27

1 Answers1

0

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
});
Community
  • 1
  • 1
Jesse Wolgamott
  • 40,197
  • 4
  • 83
  • 109