I'm using the Facebook Comments social plugin and I want to be able to send an email every time someone adds a new comment. In the past, I've used Rails' Action Mailer to send emails, but I can't figure out how to get it to work.
I'm listening for the JavaScript event FB.Event.subscribe('comment.create) then I want the callback function to send an AJAX request to the ActionMailer to send out an email. How do I do this?
JavaScript code:
FB.Event.subscribe('comment.create', commentMailer(response))
function commentMailer(response) {
//code to call function to send mail
}
Rails code:
class UserMailer < ActionMailer::Base
default :from => "<email address>"
def new_comment_email(user, ride)
@user = user
@ride = ride
emails = ride.users.collect {|user| user.email}
mail(:to => emails, :subject => "etc")
end
end