just want to change a little bit author email notify message(wp_notify_postauthor - pluggable.php),and I'm applying filters on comment_notification_text
function myfunction(){
return "<div class='left_side'>"..$comment..$post.."</div>"
}
add_filter('comment_notification_text', 'myfunction');
How to access data $comment,$post,... in myfunction ?