Problem:
I am sending an email with HTML content with the following code, when recipient receive my email, body is blank and content went to ASOMEFUNNYFILENAME.html as attachment instead
Code:
...
Multipart multipart = new MimeMultipart();
BodyPart textContentPart = new MimeBodyPart();
textContentPart.setContent("<html>a page of html content</html>", "text/html; charset=utf-8");
multipart.addBodyPart(textContentPart);
.
message.setContent(mutipart);
Transport.send(message);
...
Not sure if anything to do with setting content/header. In the log it says
Content-Type: multipart/mixed;
Any advice? Thanks