public boolean isInBodyText(String phraseCaseInsensitive) throws SieveMailException {
try {
return contentAsText().indexOf(phraseCaseInsensitive.toLowerCase()) != -1;
} catch (MessagingException ex) {
throw new SieveMailException(ex);
} catch (IOException ex) {
throw new SieveMailException(ex);
}
}