Uses of Class
org.clapper.util.mail.EmailAddress

Packages that use EmailAddress
org.clapper.util.mail org.clapper.util.mail - Mail Classes. 
 

Uses of EmailAddress in org.clapper.util.mail
 

Methods in org.clapper.util.mail that return EmailAddress
 EmailAddress EmailMessage.getSender()
          Get the email address that will be used as the sender.
 

Methods in org.clapper.util.mail that return types with arguments of type EmailAddress
 java.util.Collection<EmailAddress> EmailMessage.getBcc()
          Get the list of "Bcc" addresses to which this message will be sent.
 java.util.Collection<EmailAddress> EmailMessage.getCc()
          Get the list of "Cc" addresses to which this message will be sent.
 java.util.Collection<EmailAddress> EmailMessage.getTo()
          Get the list of "To" addresses to which this message will be sent.
 

Methods in org.clapper.util.mail with parameters of type EmailAddress
 void EmailMessage.addBcc(EmailAddress emailAddress)
          Add an email address to the list of "Bcc" (blind carbon copy) addresses to receive this message.
 void EmailMessage.addCc(EmailAddress emailAddress)
          Add an email address, in the form of an EmailAddress object, to the list of "Cc" addresses to receive this message.
 void EmailMessage.addTo(EmailAddress emailAddress)
          Add an email address, in the form of an EmailAddress object, to the list of "To" addresses to receive this message.
 void EmailMessage.setSender(EmailAddress senderAddress)
          Set the sender's email address.
 

Method parameters in org.clapper.util.mail with type arguments of type EmailAddress
static int EmailAddress.parse(java.lang.String s, java.util.Collection<EmailAddress> collection)
          Parse a sequence of comma-separated email addresses into individual EmailAddress objects, enforcing strict Internet RFC822 email address syntax requirements.
 

Constructors in org.clapper.util.mail with parameters of type EmailAddress
EmailAddress(EmailAddress emailAddress)
          Constructs a new copy of an existing EmailMessage object.
 



Copyright © 2004-2007 Brian M. Clapper. All Rights Reserved.