sorry for my later.
i tried to edit function send_notifications() in /plugins/subscribe-to-comments.php file (plugin file), but i don’t undestand how i can put a new text signature (a signature always the same) in the final part of the notification mail
here i copy the code:
function send_notifications($cid) {
global $wpdb;
$cid = (int) $cid;
$comment = $wpdb->get_row(“SELECT * FROM $wpdb->comments WHERE comment_ID=’$cid’ LIMIT 1”);
$post = $wpdb->get_row(“SELECT * FROM $wpdb->posts WHERE ID=’$comment->comment_post_ID’ LIMIT 1”);
if ($comment->comment_approved == ‘1’ && $comment->comment_type == ”) {
// Comment has been approved and isn’t a trackback or a pingback, so we should send out notifications
$message = sprintf(__(“There is a new comment on the post \”%s\””, ‘subscribe-to-comments’) . “. \n%s\n\n”, stripslashes($post->post_title), get_permalink($comment->comment_post_ID));
$message .= sprintf(__(“Author: %s\n”, ‘subscribe-to-comments’), $comment->comment_author);
$message .= __(“Comment:\n”, ‘subscribe-to-comments’) . stripslashes($comment->comment_content) . “\n\n”;
$message .= __(“See all comments on this post here:\n”, ‘subscribe-to-comments’);
$message .= get_permalink($comment->comment_post_ID) . “#comments\n\n”;
//add link to manage comment notifications
$message .= __(“To manage your subscriptions or to block all notifications from this site, click the link below:\n”, ‘subscribe-to-comments’);
$message .= get_settings(‘siteurl’).”/wp-subscription-manager.php?email=[email]&key=[key]”;
$subject = sprintf(__(‘New Comment On: %s’, ‘subscribe-to-comments’), stripslashes($post->post_title));
how i must edit this code?