email.setSubject(buildSubject(stream, checkResult, configuration, backlog));
StringBuilder body = new StringBuilder();
body.append(buildBody(stream, checkResult, backlog));
email.setMsg(body.toString());
email.addTo(emailAddress);
email.send();
}
protected String buildSubject(Stream stream, AlertCondition.CheckResult checkResult, Configuration config, List<Message> backlog) {