Class MimeMessageParser


  • public class MimeMessageParser
    extends java.lang.Object
    Parses a MimeMessage and stores the individual parts such a plain text, HTML text and attachments.
    Since:
    1.3
    • Constructor Detail

      • MimeMessageParser

        public MimeMessageParser​(MimeMessage message)
        Constructs an instance with the MimeMessage to be extracted.
        Parameters:
        message - the message to parse
    • Method Detail

      • parse

        public MimeMessageParser parse()
                                throws java.lang.Exception
        Does the actual extraction.
        Returns:
        this instance
        Throws:
        java.lang.Exception - parsing the mime message failed
      • getTo

        public java.util.List<Address> getTo()
                                      throws java.lang.Exception
        Returns:
        the 'to' recipients of the message
        Throws:
        java.lang.Exception - determining the recipients failed
      • getCc

        public java.util.List<Address> getCc()
                                      throws java.lang.Exception
        Returns:
        the 'cc' recipients of the message
        Throws:
        java.lang.Exception - determining the recipients failed
      • getBcc

        public java.util.List<Address> getBcc()
                                       throws java.lang.Exception
        Returns:
        the 'bcc' recipients of the message
        Throws:
        java.lang.Exception - determining the recipients failed
      • getFrom

        public java.lang.String getFrom()
                                 throws java.lang.Exception
        Returns:
        the 'from' field of the message
        Throws:
        java.lang.Exception - parsing the mime message failed
      • getReplyTo

        public java.lang.String getReplyTo()
                                    throws java.lang.Exception
        Returns:
        the 'replyTo' address of the email
        Throws:
        java.lang.Exception - parsing the mime message failed
      • getSubject

        public java.lang.String getSubject()
                                    throws java.lang.Exception
        Returns:
        the mail subject
        Throws:
        java.lang.Exception - parsing the mime message failed
      • getMimeMessage

        public MimeMessage getMimeMessage()
        Returns:
        Returns the mimeMessage.
      • isMultipart

        public boolean isMultipart()
        Returns:
        Returns the isMultiPart.
      • getPlainContent

        public java.lang.String getPlainContent()
        Returns:
        Returns the plainContent if any
      • getAttachmentList

        public java.util.List<javax.activation.DataSource> getAttachmentList()
        Returns:
        Returns the attachmentList.
      • getContentIds

        public java.util.Collection<java.lang.String> getContentIds()
        Returns a collection of all content-ids in the parsed message.

        The content-ids are stripped of any angle brackets, i.e. "part1" instead of "<part1>".

        Returns:
        the collection of content ids.
        Since:
        1.3.4
      • getHtmlContent

        public java.lang.String getHtmlContent()
        Returns:
        Returns the htmlContent if any
      • hasPlainContent

        public boolean hasPlainContent()
        Returns:
        true if a plain content is available
      • hasHtmlContent

        public boolean hasHtmlContent()
        Returns:
        true if HTML content is available
      • hasAttachments

        public boolean hasAttachments()
        Returns:
        true if attachments are available
      • findAttachmentByName

        public javax.activation.DataSource findAttachmentByName​(java.lang.String name)
        Find an attachment using its name.
        Parameters:
        name - the name of the attachment
        Returns:
        the corresponding datasource or null if nothing was found
      • findAttachmentByCid

        public javax.activation.DataSource findAttachmentByCid​(java.lang.String cid)
        Find an attachment using its content-id.

        The content-id must be stripped of any angle brackets, i.e. "part1" instead of "<part1>".

        Parameters:
        cid - the content-id of the attachment
        Returns:
        the corresponding datasource or null if nothing was found
        Since:
        1.3.4