我想将 html 内容附加到 eamil 正文。当我尝试下面的代码时,div 的宽度、高度和中心对齐样式以及给段落的填充不起作用。当我发送邮件时,div 覆盖了邮件的全部正文。如何解决这个问题
BodyPart messageBodyPart = new MimeBodyPart();
String htmlbody="<div style=\"width:500px;height:700px;background-color:green;margin:0 auto\">"+
"<img src=\"cid:img1\"/>"+
"<p style=\"padding-left:22px;padding-right:22px;\">My first paragraph.</p>"+
"<img src=\"cid:img2\"/>"+
"</div>";
messageBodyPart.setContent(htmlbody, "text/html");
multipart.addBodyPart(messageBodyPart);