}
String[] to = (String[]) recipients.toArray(new String[recipients.size()]);
WorkflowProcessor processor = new WorkflowProcessor(cont,usr);
WorkflowComment comment = new WorkflowComment();
// Commenting on task to review
comment.setComment(LanguageUtil.get(PublicCompanyFactory.getDefaultCompany(), "Please-review-this-content-comment"));
comment.setWorkflowtaskId(task.getId());
comment.setCreationDate(new Date());
comment.setPostedBy(systemUser.getUserId());
wapi.saveComment(comment);
// Sending Email to review the content
WorkflowEmailUtil.sendWorkflowEmail(processor, to, LanguageUtil.get(PublicCompanyFactory.getDefaultCompany(), "Please-review-this-content-comment"), LanguageUtil.get(PublicCompanyFactory.getDefaultCompany(), "Please-review-this-content-email"), true);
}else{