this.prettyPrint = prettyPrint;
MimeMultipart mp = new MimeMultipart(dataSource);
message = new MimeMessage(AttachmentUtils.JAVAMAIL_SESSION);
message.setContent(mp);
AttachmentType attachmentType = AttachmentType.MIME;
for (int c = 0; c < mp.getCount(); c++) {
BodyPart bodyPart = mp.getBodyPart(c);
String contentType = bodyPart.getContentType().toUpperCase();