简体   繁体   English

如何使用 JavaMail 将多个文件附加到 email?

[英]How to attach multiple files to an email using JavaMail?

The following Java code is used to attach a file to an email.以下 Java 代码用于将文件附加到 email。 I want to send multiple files attachments through email.我想通过 email 发送多个文件附件。 Any suggestions would be appreciated.任何建议,将不胜感激。

public class SendMail {

    public SendMail() throws MessagingException {
        String host = "smtp.gmail.com";
        String Password = "mnmnn";
        String from = "xyz@gmail.com";
        String toAddress = "abc@gmail.com";
        String filename = "C:/Users/hp/Desktop/Write.txt";
        // Get system properties
        Properties props = System.getProperties();
        props.put("mail.smtp.host", host);
        props.put("mail.smtps.auth", "true");
        props.put("mail.smtp.starttls.enable", "true");
        Session session = Session.getInstance(props, null);

        MimeMessage message = new MimeMessage(session);
        message.setFrom(new InternetAddress(from));
        message.setRecipients(Message.RecipientType.TO, toAddress);
        message.setSubject("JavaMail Attachment");
        BodyPart messageBodyPart = new MimeBodyPart();
        messageBodyPart.setText("Here's the file");
        Multipart multipart = new MimeMultipart();
        multipart.addBodyPart(messageBodyPart);
        messageBodyPart = new MimeBodyPart();
        DataSource source = new FileDataSource(filename);
        messageBodyPart.setDataHandler(new DataHandler(source));
        messageBodyPart.setFileName(filename);
        multipart.addBodyPart(messageBodyPart);
        message.setContent(multipart);

        try {
            Transport tr = session.getTransport("smtps");
            tr.connect(host, from, Password);
            tr.sendMessage(message, message.getAllRecipients());
            System.out.println("Mail Sent Successfully");
            tr.close();
        } catch (SendFailedException sfe) {
            System.out.println(sfe);
        }
    }
}` 

Well, it's been a while since I've done JavaMail work, but it looks like you could just repeat this code multiple times:好吧,我已经有一段时间没有完成 JavaMail 工作了,但看起来您可以多次重复此代码:

DataSource source = new FileDataSource(filename);
messageBodyPart.setDataHandler(new DataHandler(source));
messageBodyPart.setFileName(filename);
multipart.addBodyPart(messageBodyPart);

For example, you could write a method to do it:例如,您可以编写一个方法来执行此操作:

private static void addAttachment(Multipart multipart, String filename)
{
    DataSource source = new FileDataSource(filename);
    BodyPart messageBodyPart = new MimeBodyPart();        
    messageBodyPart.setDataHandler(new DataHandler(source));
    messageBodyPart.setFileName(filename);
    multipart.addBodyPart(messageBodyPart);
}

Then from your main code, just call:然后从您的主代码中,只需调用:

addAttachment(multipart, "file1.txt");
addAttachment(multipart, "file2.txt");

etc等等

UPDATE (March 2020)更新(2020 年 3 月)

With the latest JavaMail™ API ( version 1.6 at the moment, JSR 919 ), things are much simpler:使用最新的JavaMail™ API (目前为1.6 版JSR 919 ),事情就简单多了:


Useful reading有用的阅读

Here is a nice and to the point tutorial with the complete example:这是一个带有完整示例的不错且中肯的教程:

    Multipart mp = new MimeMultipart();

        MimeBodyPart mbp1 = new MimeBodyPart();
        mbp1.setContent(body,"text/html");
        mp.addBodyPart(mbp1);

        if(filename!=null)
        {
            MimeBodyPart mbp2 = null;
            FileDataSource fds =null;
            for(int counter=0;counter<filename.length;counter++)
            {
                mbp2 = null;
                fds =null;
                mbp2=new MimeBodyPart();
                fds = new FileDataSource(filename[counter]);
                mbp2.setDataHandler(new DataHandler(fds));
                mbp2.setFileName(fds.getName());
                mp.addBodyPart(mbp2);
            }
        }
        msg.setContent(mp);
        msg.setSentDate(new Date());
        Transport.send(msg);

just add another block with using the filename of the second file you want to attach and insert it before the message.setContent(multipart) command只需使用要附加的第二个文件的文件名添加另一个块并将其插入到 message.setContent(multipart) 命令之前

    messageBodyPart = new MimeBodyPart();

    DataSource source = new FileDataSource(filename);

    messageBodyPart.setDataHandler(new DataHandler(source));

    messageBodyPart.setFileName(filename);

    multipart.addBodyPart(messageBodyPart);

Have Array list al which has the list of attachments you need to mail and use the below given code拥有 Array list al,其中包含您需要邮寄的附件列表,并使用下面给出的代码

for(int i=0;i<al.size();i++)
            {
                System.out.println(al.get(i));

                messageBodyPart = new MimeBodyPart();
                DataSource source = new FileDataSource((String)al.get(i));

                messageBodyPart.setDataHandler(new DataHandler(source));
                messageBodyPart.setFileName((String)al.get(i));
                multipart.addBodyPart(messageBodyPart);
                message.setContent(multipart);
            }
File f = new File(filepath);
File[] attachments = f.listFiles();
// Part two is attachment
for( int i = 0; i < attachments.length; i++ ) {
    if (attachments[i].isFile() && attachments[i].getName().startsWith("error"))  {
        messageBodyPart = new MimeBodyPart();
        FileDataSource fileDataSource =new FileDataSource(attachments[i]);
        messageBodyPart.setDataHandler(new DataHandler(fileDataSource));
        messageBodyPart.setFileName(attachments[i].getName());
        messageBodyPart.setContentID("<ARTHOS>");
        messageBodyPart.setDisposition(MimeBodyPart.INLINE);
        multipart.addBodyPart(messageBodyPart);
    }
}

只需将更多文件添加到multipart

This is woking 100% with Spring 4+.这在 Spring 4+ 中 100% 有效。 You will have to enable less secure option on your gmail account.您必须在您的 Gmail 帐户上启用安全性较低的选项。 Also you will need the apache commons package:您还需要 apache commons 包:

<!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
<dependency>
    <groupId>commons-fileupload</groupId>
    <artifactId>commons-fileupload</artifactId>
    <version>1.4</version>
</dependency>
@GetMapping("/some-mapping")
public void mailMethod(@RequestParam CommonsMultipartFile attachFile, @RequestParam CommonsMultipartFile attachFile2) {

    Properties mailProperties = new Properties();
    mailProperties.put("mail.smtp.auth", true);
    mailProperties.put("mail.smtp.starttls.enable", true);
    mailProperties.put("mail.smtp.ssl.enable", true);
    mailProperties.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
    mailProperties.put("mail.smtp.socketFactory.fallback", false);

    JavaMailSenderImpl javaMailSenderImpl = new JavaMailSenderImpl();
    javaMailSenderImpl.setJavaMailProperties(mailProperties);
    javaMailSenderImpl.setHost("smtp.gmail.com");
    javaMailSenderImpl.setPort(465);
    javaMailSenderImpl.setProtocol("smtp");
    javaMailSenderImpl.setUsername("*********@gmail.com");
    javaMailSenderImpl.setPassword("*******");
    javaMailSenderImpl.setDefaultEncoding("UTF-8");

    List<CommonsMultipartFile> attachments = new ArrayList<>();
    attachments.add(attachFile);
    attachments.add(attachFile2);

    javaMailSenderImpl.send(mimeMessage -> {

        MimeMessageHelper messageHelper = new MimeMessageHelper(mimeMessage, true, "UTF-8");
        messageHelper.setTo(emailTo);
        messageHelper.setSubject(subject);
        messageHelper.setText(message);

        if (!attachments.equals("")) {
            for (CommonsMultipartFile file : attachments) {
                messageHelper.addAttachment(file.getOriginalFilename(), file);
            }
        }
    });
}
 Multipart multipart = new MimeMultipart("mixed");

        for (int alen = 0; attlen < attachments.length; attlen++) 
        {

            MimeBodyPart messageAttachment = new MimeBodyPart();    
            fileName = ""+ attachments[attlen];


            messageAttachment.attachFile(fileName);
            messageAttachment.setFileName(attachment);
            multipart.addBodyPart(messageAttachment);

        }

After Java Mail 1.3 attaching file more simpler, Java Mail 1.3 后附加文件更简单,

  • Just use MimeBodyPart methods to attach file directly or from a filepath.只需使用 MimeBodyPart 方法直接或从文件路径附加文件。

     MimeBodyPart messageBodyPart = new MimeBodyPart(); //messageBodyPart.attachFile(String filePath); messageBodyPart.attachFile(File file); multipart.addBodyPart(messageBodyPart);

Try this to read the file name from array试试这个从数组中读取文件名

 MimeBodyPart messageBodyPart =  new MimeBodyPart();      
     Multipart multipart = new MimeMultipart();

     for(int i = 0 ; i < FilePath.length ; i++){
          info("Attching the file + "+ FilePath[i]);
          messageBodyPart.attachFile(FilePath[i]);
          multipart.addBodyPart(messageBodyPart);                       
     }         
 message.setContent(multipart);

I do have a better alternative for sending Multiple files in a single mail off course.当然,我确实有更好的选择,可以在一封邮件中发送多个文件。 Mutipart class allows us to attain this feature quite easily. Mutipart 类允许我们很容易地获得这个特性。 If you may not have any info about it then read it from here : https://docs.oracle.com/javaee/6/api/javax/mail/Multipart.html如果您可能没有关于它的任何信息,请从这里阅读: https : //docs.oracle.com/javaee/6/api/javax/mail/Multipart.html

The Multipart class provides us two same-name methods with different parameters off course, ie addBodyPart(BodyPart part) and addBodyPart(BodyPart part, int index). Multipart 类为我们提供了两个不同参数的同名方法,即addBodyPart(BodyPart part) 和addBodyPart(BodyPart part, int index)。 For 1 single file we may use the first method and for mutiple files we may use the second method (which takes two parameters).对于单个文件,我们可以使用第一种方法,对于多个文件,我们可以使用第二种方法(需要两个参数)。

 MimeMessage message = new MimeMessage(session);
            Multipart multipart = new MimeMultipart();

            message.setFrom(new InternetAddress(username));

            for (String email : toEmails) {
                message.addRecipient(Message.RecipientType.BCC, new InternetAddress(email));
                }

                message.setSubject(subject);
                BodyPart messageBodyPart1 = new MimeBodyPart();
                messageBodyPart1.setText(typedMessage);

                multipart.addBodyPart(messageBodyPart1, i);
                i = i + 1;

                for (String filename : attachedFiles) {
                    MimeBodyPart messageBodyPart2 = new MimeBodyPart();


                    messageBodyPart2.attachFile(filename);

                    multipart.addBodyPart(messageBodyPart2, i);
                    i = i + 1;
                }

                message.setContent(multipart);
                Transport.send(message);
 for (String fileName: files) {
            MimeBodyPart messageAttachmentPart = new MimeBodyPart();
            messageAttachmentPart.attachFile(fileName);
            multipart.addBodyPart(messageAttachmentPart);
        }

You have to make sure that you are creating a new mimeBodyPart for each attachment.您必须确保为每个附件创建一个新的 mimeBodyPart。 The object is being passed by reference so if you only do :该对象是通过引用传递的,所以如果你只这样做:

 MimeBodyPart messageAttachmentPart = new MimeBodyPart();
  
 for (String fileName: files) {
            messageAttachmentPart.attachFile(fileName);
            multipart.addBodyPart(messageAttachmentPart);
        }

it will attach the same file X number of times它将附加相同的文件 X 次

@informatik01 posted an answer above with the link to the documentation where there is an example of this @informatik01 在上面发布了一个答案,并附有指向文档的链接,其中有一个示例

Below is working for me:以下为我工作:

List<String> attachments = new ArrayList<>();

attachments.add("C:/Users/dell/Desktop/file1.txt");
attachments.add("C:/Users/dell/Desktop/file2.txt");
attachments.add("C:/Users/dell/Desktop/file3.txt");
attachments.add("C:/Users/dell/Desktop/file4.txt");
attachments.add("C:/Users/dell/Desktop/file5.txt");

MimeMessage msg = new MimeMessage(session);

if (attachments !=null && !attachments.isEmpty() ) {
MimeBodyPart attachmentPart = null;
            Multipart multipart = new MimeMultipart();
            for(String attachment : attachments) {
                attachmentPart = new MimeBodyPart();
                attachmentPart.attachFile(new File(attachment));
                multipart.addBodyPart(attachmentPart);
            }
            multipart.addBodyPart(textBodyPart);
            msg.setContent(multipart);
}
Transport.send(msg);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM