发送附件时不会显示正文消息

nid*_*dis 6 java jakarta-mail

当我发送附件时,我在电子邮件中看不到正文消息(message.setText(this.getEmailBody());).如果没有附件,电子邮件将显示正文消息.电子邮件将发送到Gmail帐户.任何线索为什么会发生这种情况?

        MimeMessage message = new MimeMessage(session_m);    
        message.setFrom(new InternetAddress(this.getEmailSender()));
        message.addRecipient(Message.RecipientType.TO, new InternetAddress(this.getEmailRecipient()));
        message.setSubject(this.getEmailSubject());
        message.setText(this.getEmailBody()); //This won't be displayed if set attachments

        Multipart multipart = new MimeMultipart();

        for(String file: getAttachmentNameList()){
            MimeBodyPart messageBodyPart = new MimeBodyPart();
            messageBodyPart.attachFile(this.attachmentsDir.concat(file.trim()));
            multipart.addBodyPart(messageBodyPart);

            message.setContent(multipart);
        }


        Transport.send(message);
        System.out.println("Email has been sent");
Run Code Online (Sandbox Code Playgroud)

Sri*_*vas 9

您需要使用以下内容:

         // Create the message part
        BodyPart messageBodyPart = new MimeBodyPart();
        // Fill the message
        messageBodyPart.setText(body);
        messageBodyPart.setContent(body, "text/html");

        Multipart multipart = new MimeMultipart();
        multipart.addBodyPart(messageBodyPart);
         //Add the bodypart for the attachment(s)
        // Send the complete message parts
        message.setContent(multipart); //message is of type - MimeMessage
Run Code Online (Sandbox Code Playgroud)

  • 你是对的.它对我也有用.我认为问题在于这两行:MimeBodyPart messageBodyPart = new MimeBodyPart(); messageBodyPart.attachFile(this.attachmentsDir.concat(file.trim())); 所以我必须按照你的方式去做.谢谢你的帮助 ;) (2认同)