Quick question about about the .INLINE part of an attachment using the apache commons library.
Basically I'm supposed to send part of an excel sheet via mail showing said part inside the body of the message which, if I'm not mistaken, should be written like this:
attachment.setDisposition(EmailAttachment.INLINE);
now here's the issue: with my code I can easily send attached files which are only attachments and IF they're images I can also put them inline.
is there any way to get a portion of the xml file since it's formatted using apache POI? (I've found similar topics regarding the VBA - excel but I kind of need to implement this inside my program..also I'd like to send the selection as it was formatted if possible since it's quite good looking thanks to POI..)
the final result should be something like a copy/paste from the selected cells of the xml file appearing in the mail body but, since it's not an image, it won't be displayed correctly if I use only the .INLINE statement..I've even tried snapshotting the JTable component with no useful result.
Here's the code to send the email if it can help:
class SendEmail {
public SendEmail() {
// Create the attachment
EmailAttachment attachment = new EmailAttachment();
attachment.setPath("pathToFile");
attachment.setDisposition(EmailAttachment.INLINE);
attachment.setDescription("Xml File");
attachment.setName("file.ods);
// Create the email message
MultiPartEmail email = new MultiPartEmail();
email.setHostName("smtp.googlemail.com");
email.setSmtpPort(587);
email.setAuthenticator(new DefaultAuthenticator(
"gmailAccount", "gmailAccountPwd"));
email.setSSL(true);
try {
email.addTo("toRecipient");
email.setFrom("fromRecipient");
email.setSubject("Attached Mail Test");
email.setMsg("This line should be followed by something..hopefully");
// add the attachment
email.attach(attachment);
email.setTLS(true);
// send the email
email.send();
} catch (EmailException e) {
e.printStackTrace();
}
}
}
PS: please note that there's no trouble sending attached attachements or inline images..is that a limitation of the apache commons or am I just inexeperienced? (the latter stands still outside the topic though XD)