in js/awaiting-reply-notification/send-notification.js [10:17]
action: function(ctx) {
var issue = ctx.issue;
var subject = '[YouTrack, Notifier] Issue ' + issue.id +
'needs your attention';
var body = 'Issue ' + issue.summary +
' has a recent comment added by a non-developer.';
issue.project.leader.notify(subject, body);
},