Sending Emails with Java - Baeldung
https://www.baeldung.com/java-email18.11.2021 · Sending Email With an Attachment. Next, to send an attachment, we only need to create another MimeBodyPart and attach the file (s) to it: MimeBodyPart attachmentBodyPart = new MimeBodyPart (); attachmentBodyPart.attachFile ( new File ( "path/to/file" )); We can then add the new body part to the MimeMultipart object we created earlier: