Uses of Class
jakarta.mail.internet.InternetAddress
Packages that use InternetAddress
Package
Description
Classes specific to Internet mail systems.
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 InternetAddressModifier and TypeMethodDescriptionInternetAddress.getGroup
(boolean strict) Return the members of a group address.static InternetAddress
InternetAddress.getLocalAddress
(Session session) Return an InternetAddress object representing the current user.static InternetAddress[]
Parse the given comma separated sequence of addresses into InternetAddress objects.static InternetAddress[]
Parse the given sequence of addresses into InternetAddress objects.static InternetAddress[]
InternetAddress.parseHeader
(String addresslist, boolean strict) Parse the given sequence of addresses into InternetAddress objects. -
Uses of InternetAddress in org.eclipse.angus.mail.smtp
Fields in org.eclipse.angus.mail.smtp declared as InternetAddressModifier and TypeFieldDescriptionprotected InternetAddress
SMTPAddressFailedException.addr
protected InternetAddress
SMTPAddressSucceededException.addr
protected InternetAddress
SMTPSenderFailedException.addr
protected InternetAddress
SMTPSendFailedException.addr
Methods in org.eclipse.angus.mail.smtp that return InternetAddressModifier and TypeMethodDescriptionSMTPAddressFailedException.getAddress()
Return the address that failed.SMTPAddressSucceededException.getAddress()
Return the address that succeeded.SMTPSenderFailedException.getAddress()
Return the address that failed.Constructors in org.eclipse.angus.mail.smtp with parameters of type InternetAddressModifierConstructorDescriptionSMTPAddressFailedException
(InternetAddress addr, String cmd, int rc, String err) Constructs an SMTPAddressFailedException with the specified address, return code, and error string.SMTPAddressSucceededException
(InternetAddress addr, String cmd, int rc, String err) Constructs an SMTPAddressSucceededException with the specified address, return code, and error string.SMTPSenderFailedException
(InternetAddress addr, String cmd, int rc, String err) Constructs an SMTPSenderFailedException with the specified address, return code, and error string.