誰かがFacebookコメントプラグインにコメントを残したときに、通知メールを送信するにはどうすればよいですか?Facebookコメントプラグインに誰かがコメントを残したときに通知メールを送信
私はこのスクリプトを持っていますが、誰かが私のページに来ると私は電子メールを受け取ります。
私はときにのみページに新しいユーザーのコメント
<script> window.fbAsyncInit = function() {
FB.init({
appId : 'appid', // App ID
channelUrl : '//http://www.corkdiscos.com/channel.html', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
FB.subscribe('comment.create', function(response){
<?php
$to = '[email protected]';
$subject = 'Comment Posted on Testimonial Page';
$message = 'Comment Posted on Testimonial Page';
$headers = 'From: [email protected]' . "\r\n" .
'Reply-To: [email protected]' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>
});
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));
</script>
iv上記のコードで私のウェブページを更新しました。 http://corkdiscos.com/testimonials.html私は何をconsole.logで探しているのですか? –