in src/main/java/org/apache/sling/cli/impl/release/TallyVotesCommand.java [87:96]
static {
try {
EMAIL_TEMPLATE = IOUtils.toString(
TallyVotesCommand.class.getClassLoader().getResourceAsStream("templates/tally-votes.email"),
StandardCharsets.UTF_8
);
} catch (IOException e) {
throw new IllegalStateException("Unable to read embedded email template.", e);
}
}