Uses of Class
javax.mail.internet.MimeMessage

Packages that use MimeMessage
com.sun.mail.dsn Support for creating and parsing Delivery Status Notifications. 
com.sun.mail.pop3 A POP3 protocol provider for the JavaMail API that provides access to a POP3 message store. 
com.sun.mail.smtp An SMTP protocol provider for the JavaMail API that provides access to an SMTP server. 
javax.mail.internet Classes specific to Internet mail systems. 
 

Uses of MimeMessage in com.sun.mail.dsn
 

Subclasses of MimeMessage in com.sun.mail.dsn
 class MessageHeaders
          A special MimeMessage object that contains only message headers, no content.
 

Methods in com.sun.mail.dsn that return MimeMessage
 MimeMessage MultipartReport.getReturnedMessage()
          Get the original message that is being returned along with this multipart/report.
 

Methods in com.sun.mail.dsn with parameters of type MimeMessage
 void MultipartReport.setReturnedMessage(MimeMessage msg)
          Set the original message to be returned as part of the multipart/report.
 

Constructors in com.sun.mail.dsn with parameters of type MimeMessage
MultipartReport(java.lang.String text, DeliveryStatus status, MimeMessage msg)
          Construct a multipart/report object with the specified plain text, delivery status, and original message to be returned to the user.
 

Uses of MimeMessage in com.sun.mail.pop3
 

Subclasses of MimeMessage in com.sun.mail.pop3
 class POP3Message
          A POP3 Message.
 

Uses of MimeMessage in com.sun.mail.smtp
 

Subclasses of MimeMessage in com.sun.mail.smtp
 class SMTPMessage
          This class is a specialization of the MimeMessage class that allows you to specify various SMTP options and parameters that will be used when this message is sent over SMTP.
 

Constructors in com.sun.mail.smtp with parameters of type MimeMessage
SMTPMessage(MimeMessage source)
          Constructs a new SMTPMessage with content initialized from the source MimeMessage.
 

Uses of MimeMessage in javax.mail.internet
 

Methods in javax.mail.internet that return MimeMessage
protected  MimeMessage MimeMessage.createMimeMessage(Session session)
          Create and return a MimeMessage object.
 

Constructors in javax.mail.internet with parameters of type MimeMessage
MimeMessage(MimeMessage source)
          Constructs a new MimeMessage with content initialized from the source MimeMessage.