Uses of Class
jakarta.mail.internet.InternetAddress
-
Packages that use InternetAddress Package Description jakarta.mail.internet Classes specific to Internet mail systems.org.eclipse.angus.mail.imap.protocol This package includes internal IMAP support classes and SHOULD NOT BE USED DIRECTLY BY APPLICATIONS.org.eclipse.angus.mail.smtp An SMTP protocol provider for the Jakarta Mail API that provides access to an SMTP server. -
-
Uses of InternetAddress in jakarta.mail.internet
Methods in jakarta.mail.internet that return InternetAddress Modifier and Type Method Description InternetAddress[]InternetAddress. getGroup(boolean strict)Return the members of a group address.static InternetAddressInternetAddress. getLocalAddress(Session session)Return an InternetAddress object representing the current user.static InternetAddress[]InternetAddress. parse(java.lang.String addresslist)Parse the given comma separated sequence of addresses into InternetAddress objects.static InternetAddress[]InternetAddress. parse(java.lang.String addresslist, boolean strict)Parse the given sequence of addresses into InternetAddress objects.static InternetAddress[]InternetAddress. parseHeader(java.lang.String addresslist, boolean strict)Parse the given sequence of addresses into InternetAddress objects. -
Uses of InternetAddress in org.eclipse.angus.mail.imap.protocol
Fields in org.eclipse.angus.mail.imap.protocol declared as InternetAddress Modifier and Type Field Description InternetAddress[]ENVELOPE. bccInternetAddress[]ENVELOPE. ccInternetAddress[]ENVELOPE. fromInternetAddress[]ENVELOPE. replyToInternetAddress[]ENVELOPE. senderInternetAddress[]ENVELOPE. to -
Uses of InternetAddress in org.eclipse.angus.mail.smtp
Fields in org.eclipse.angus.mail.smtp declared as InternetAddress Modifier and Type Field Description protected InternetAddressSMTPAddressFailedException. addrprotected InternetAddressSMTPAddressSucceededException. addrprotected InternetAddressSMTPSenderFailedException. addrprotected InternetAddressSMTPSendFailedException. addrMethods in org.eclipse.angus.mail.smtp that return InternetAddress Modifier and Type Method Description InternetAddressSMTPAddressFailedException. getAddress()Return the address that failed.InternetAddressSMTPAddressSucceededException. getAddress()Return the address that succeeded.InternetAddressSMTPSenderFailedException. getAddress()Return the address that failed.Constructors in org.eclipse.angus.mail.smtp with parameters of type InternetAddress Constructor Description SMTPAddressFailedException(InternetAddress addr, java.lang.String cmd, int rc, java.lang.String err)Constructs an SMTPAddressFailedException with the specified address, return code, and error string.SMTPAddressSucceededException(InternetAddress addr, java.lang.String cmd, int rc, java.lang.String err)Constructs an SMTPAddressSucceededException with the specified address, return code, and error string.SMTPSenderFailedException(InternetAddress addr, java.lang.String cmd, int rc, java.lang.String err)Constructs an SMTPSenderFailedException with the specified address, return code, and error string.
-