0

我有一个现有的 eml 文件,其中包含正文和附件。

我只是想在这个文件中添加附件,而不是删除现有的 onlt 来添加附件。

我有这个代码来创建 eml:

public static void createMessage(String to, String from, String subject, String body, List<File> attachments) {
try {
    Message message = new MimeMessage(Session.getInstance(System.getProperties()));
    message.setFrom(new InternetAddress(from));
    message.setRecipients(Message.RecipientType.TO, InternetAddress.parse(to));
    message.setSubject(subject);
    // create the message part 
    MimeBodyPart content = new MimeBodyPart();
    // fill message
    content.setText(body);
    Multipart multipart = new MimeMultipart();
    multipart.addBodyPart(content);
    // add attachments
    for(File file : attachments) {
        MimeBodyPart attachment = new MimeBodyPart();
        DataSource source = new FileDataSource(file);
        attachment.setDataHandler(new DataHandler(source));
        attachment.setFileName(file.getName());
        multipart.addBodyPart(attachment);
    }
    // integration
    message.setContent(multipart);
    // store file
    message.writeTo(new FileOutputStream(new File("c:/mail.eml")));
} catch (MessagingException ex) {
    Logger.getLogger(Mailkit.class.getName()).log(Level.SEVERE, null, ex);
} catch (IOException ex) {
    Logger.getLogger(Mailkit.class.getName()).log(Level.SEVERE, null, ex);
}

}

但是我如何添加到现有而不是创建?

4

1 回答 1

0
public static void addAttachment(Message msg, File attachment) throws Exception {
    //Create the new body part and add the file
    MimeBodyPart attachment = new MimeBodyPart();
    DataSource source = new FileDataSource(file);
    attachment.setDataHandler(new DataHandler(source));
    attachment.setFileName(file.getName());

    //Add the new body part to the e-mail
    msg.getContent().addBodyPart(attachment);
}

在上述方法中,使用附件创建了一个新的正文部分,然后将该正文部分添加到已经存在的电子邮件的多部分中。

于 2014-06-11T15:31:18.937 回答