Package | Description |
---|---|
com.sun.mail.dsn |
Support for creating and parsing Delivery Status Notifications.
|
com.sun.mail.gimap |
An EXPERIMENTAL IMAP protocol provider that supports the
Gmail-specific IMAP protocol extensions
.
|
com.sun.mail.imap |
An IMAP protocol provider for the JavaMail API
that provides access to an IMAP message store.
|
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.
|
com.sun.mail.util |
Utility classes for use with the JavaMail API.
|
com.sun.mail.util.logging |
Contains JavaMailTM extensions for
the JavaTM platform's core logging
facilities.
|
javax.mail.internet |
Classes specific to Internet mail systems.
|
Modifier and Type | Class and Description |
---|---|
class |
MessageHeaders
A special MimeMessage object that contains only message headers,
no content.
|
Modifier and Type | Class and Description |
---|---|
class |
GmailMessage
A Gmail message.
|
Modifier and Type | Class and Description |
---|---|
class |
IMAPBodyPart
An IMAP body part.
|
class |
IMAPMessage
This class implements an IMAPMessage object.
|
class |
IMAPNestedMessage
This class implements a nested IMAP message
|
Constructor and Description |
---|
IMAPMultipartDataSource(MimePart part,
BODYSTRUCTURE[] bs,
java.lang.String sectionId,
IMAPMessage msg) |
Modifier and Type | Class and Description |
---|---|
class |
POP3Message
A POP3 Message.
|
Modifier and Type | Class and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
private boolean |
SMTPTransport.convertTo8Bit(MimePart part)
If the Part is a text part and has a Content-Transfer-Encoding
of "quoted-printable" or "base64", and it obeys the rules for
"8bit" encoding, change the encoding to "8bit".
|
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
MimeUtil.cleanContentType(MimePart mp,
java.lang.String contentType)
If a Content-Type handler has been specified,
call it to clean up the Content-Type value.
|
Modifier and Type | Method and Description |
---|---|
private void |
MailHandler.appendContentLang(MimePart p,
java.util.Locale l)
Appends the content language to the given mime part.
|
Modifier and Type | Class and Description |
---|---|
class |
MimeBodyPart
This class represents a MIME body part.
|
class |
MimeMessage
This class represents a MIME style email message.
|
class |
PreencodedMimeBodyPart
A MimeBodyPart that handles data that has already been encoded.
|
Modifier and Type | Field and Description |
---|---|
protected MimePart |
MimePartDataSource.part
The MimePart that provides the data for this DataSource.
|
(package private) MimePart |
MimeBodyPart.MimePartDataHandler.part |
Modifier and Type | Method and Description |
---|---|
(package private) MimePart |
MimeBodyPart.MimePartDataHandler.getPart() |
Modifier and Type | Method and Description |
---|---|
(package private) static java.lang.String[] |
MimeBodyPart.getContentLanguage(MimePart part) |
(package private) static java.lang.String |
MimeBodyPart.getDescription(MimePart part) |
(package private) static java.lang.String |
MimeBodyPart.getDisposition(MimePart part) |
(package private) static java.lang.String |
MimeBodyPart.getEncoding(MimePart part) |
(package private) static java.lang.String |
MimeBodyPart.getFileName(MimePart part) |
(package private) static void |
MimeBodyPart.invalidateContentHeaders(MimePart part) |
(package private) static boolean |
MimeBodyPart.isMimeType(MimePart part,
java.lang.String mimeType) |
(package private) static java.lang.String |
MimeBodyPart.restrictEncoding(MimePart part,
java.lang.String encoding)
Restrict the encoding to values allowed for the
Content-Type of the specified MimePart.
|
(package private) static void |
MimeBodyPart.setContentLanguage(MimePart part,
java.lang.String[] languages) |
(package private) static void |
MimeBodyPart.setDescription(MimePart part,
java.lang.String description,
java.lang.String charset) |
(package private) static void |
MimeBodyPart.setDisposition(MimePart part,
java.lang.String disposition) |
(package private) static void |
MimeBodyPart.setEncoding(MimePart part,
java.lang.String encoding) |
(package private) static void |
MimeBodyPart.setFileName(MimePart part,
java.lang.String name) |
(package private) static void |
MimeBodyPart.setText(MimePart part,
java.lang.String text,
java.lang.String charset,
java.lang.String subtype) |
(package private) static void |
MimeBodyPart.updateHeaders(MimePart part) |
(package private) static void |
MimeBodyPart.writeTo(MimePart part,
java.io.OutputStream os,
java.lang.String[] ignoreList) |
Constructor and Description |
---|
MimePartDataHandler(MimePart part) |
MimePartDataSource(MimePart part)
Constructor, that constructs a DataSource from a MimePart.
|