*/
public void addAttachment(String filename, String mimeType, String contentId, byte[] content) {
if (attachments == null) {
attachments = new ArrayList<EmailAttachment>();
}
EmailAttachment emailAttachment = new ByteArrayAttachment(content, mimeType, filename, contentId);
emailAttachment.setSize(content.length);
attachments.add(emailAttachment);
}