position:绝对不能使用java邮件html消息

时间:2012-10-11 09:06:49

标签: html javamail

我写了以下代码

            MimeMultipart multipart = new MimeMultipart("related");

        // first part  (the html)
        BodyPart messageBodyPart = new MimeBodyPart();
        String htmlText = 
"<img src=\"cid:image\"\\>\n"+
  "<div style=\"position:absolute; left: 150px; top: 298px; width: 248px;\">hello</div>\n"+
  "<div style=\"position:absolute; left: 176px; top: 349px; width: 225px;\">hello</div>\n"+
    "<div style=\"position:absolute; left: 185px; top: 401px; width: 216px;\">hello</div>\n"+
    "<div style=\"position:absolute; left: 167px; top: 514px; width: 232px;\">hello</div>\n";
        messageBodyPart.setContent(htmlText, "text/html");

        // add it
        multipart.addBodyPart(messageBodyPart);

        // second part (the image)
        messageBodyPart = new MimeBodyPart();
        DataSource fds = new FileDataSource("D://a1.jpg");
        messageBodyPart.setDataHandler(new DataHandler(fds));
        messageBodyPart.setHeader("Content-ID","<image>");

        // add it
        multipart.addBodyPart(messageBodyPart);

    // put everything together
        msg.setContent(multipart);
        bus.sendMessage(msg, address);

一切正常,电子邮件也正在传递,唯一的问题是div元素应该在图像上方..但在收到的电子邮件中,位置:e的绝对部分邮件被省略..

任何帮助?

1 个答案:

答案 0 :(得分:0)

很遗憾,您无法使用position: absolute,您最好使用电子邮件中的表格,它会更好看,同时,尝试使用<table />作为{background-image创建cid:image 1}}并使用表格单元格布置div