*编辑/完成的解决方案/工作代码
所以,这是我的一个朋友帮助我想出的。
这是我在 K2“items.php”文件中使用的部分:
<div class="fb-comments" data-href="<?php echo JURI::current(); ?>" data-num-posts="8" notify="true" data-width="580"></div>
<input id="authname" style="display: none;" type="text" value="<?php echo $this->item->author->name; ?>" />
<input id="authmail" style="display: none;" type="text" value="<?php echo $this->item->author->email; ?>" />
<input id="link" style="display: none;" type="text" value="<?php echo JURI::current(); ?>" />
<script>
window.fbAsyncInit = function() {
FB.Event.subscribe('comment.create', function (response) {
var commentQuery = FB.Data.query("SELECT text, fromid FROM comment WHERE post_fbid='" + response.commentID +
"' AND object_id IN (SELECT comments_fbid FROM link_stat WHERE url='" + response.href + "')");
var userQuery = FB.Data.query("SELECT name FROM user WHERE uid in (select fromid from {0})", commentQuery);
FB.Data.waitOn([commentQuery, userQuery], function () {
var commentRow = commentQuery.value[0];
var userRow = userQuery.value[0];
console.log(userRow.name + " (id: " + commentRow.fromid + ") posted the comment: " + commentRow.text);
trackcomments(response['commentID'], response['href'], 'create', commentRow.text, userRow.name, commentRow.fromid);
});
});
};
function trackcomments(_commentid, _address, _action, _commentMessage, _userName, _userId) {
var authname = document.getElementById('authname').value;
var authmail = document.getElementById('authmail').value;
var link = document.getElementById('link').value;
$.ajax({
type: 'POST',
url: 'http://mydomain.com/dostuff.php',
data: {'commentMessage': _commentMessage, 'userName': _userName, 'authname': authname, 'authmail': authmail, 'link': link},
cache: false
});
};
</script>
这是 do_stuff.php:
<?php
//Handle some weird letters and stuff
setlocale(LC_TIME, 'swedish');
//creating an $author variable and populating it from $_POST
$author = $_POST['authname'];
$authoremail = $_POST['authmail'];
$link = $_POST['link'];
$commentMessage = $_POST['commentMessage'];
$userName = $_POST['userName'];
$date = strftime('%A %e %b %Y %H.%M', time());
//getting author email
$to = $authoremail;
//subject of email
$subject = "New comment posted on mydmomain.com";
//email content
$message = "On $date $userName wrote\n\n$commentMessage\n\non your entry $link#comments\n\nUse the above link to answer on the comment.";
//who the mail is from
$from = "admin@mydomain.com";
//header
$headers = "From:" . $from;
//send the email
mail($to,$subject,$message,$headers);
?>
事实证明,它不起作用有一个简单的原因...... JavaScript 似乎无法处理 PHP!
因此,“do_stuff.php”(以前称为 sendmail.php)从未使用 echo JURI::base(); 执行。
即便如此。var = $this->item... 还试图从不起作用的 PHP 变量中获取数据。因此,为了解决那些放在隐藏输入表单中的变量的值,以便通过 getObjectById 检索它们。
就像我的朋友所说的那样,不知道这是否是最优雅或最复杂的解决方案......但它确实起到了作用并达到了它的目的。
但是,如果有人有更好更“正确”的方法来实现这一点,我会全神贯注:)
感谢@jack 的帮助!以及将来为该主题做出贡献的任何其他人。
- 原帖 -
还在学习 PHP 和 Joomla 和 K2。已经坐了好几天了,试图弄清楚如何让特定作者在使用 fb:comments 发表评论时收到电子邮件。
到目前为止一切顺利...... FB.event.subscribe comment.create 无需用户采取行动即可
现在,唯一缺少的是对变量“$item->author->name”的引用。因为这在我调用 sendmail.php 的原始文件 (item.php) 中可用
<script>
window.fbAsyncInit = function() {
/* All the events registered */
FB.Event.subscribe('comment.create', function (response) {
$.get('<?php echo JURI::base(); ?>sendmail.php');
});
};
</script>
这是“sendmail.php”文件
<?php
if ($item->author->name == "Firstname1 Lastname1"){
$to = "author1@mydomain.com";
}else if ($item->author->name == "Firstname2 Lastname2"){
$to = "author2@mydomain.com";
};
$subject = "New comment";
$message = "A new comments has been made.";
$from = "admin@mydomain.com";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
?>
我不知道如何让 $item->author->name 工作。因为我需要确保它以某种方式检查名称是什么(因为它显示在生成的页面上,所以我必须能够以某种方式使用它)来指定要发送到的电子邮件。
我不知道这是否已经被问过,但我什至不知道要搜索什么才能让我从这里开始。我无法想象这将很难解决(如果你只知道你需要改变什么)。:)