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

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

Uses of EmailException in org.clapper.util.mail
 

Methods in org.clapper.util.mail that throw EmailException
 void EmailMessage.addAttachment(java.io.File file)
          Add an attachment from the contents of a file.
 void EmailMessage.addAttachment(java.io.File file, java.lang.String mimeType)
          Add an attachment from the contents of a file.
 void EmailMessage.addAttachment(java.io.File file, java.lang.String fileName, java.lang.String mimeType)
          Add an attachment from the contents of a file.
 void EmailMessage.addAttachment(java.io.InputStream is)
          Add an attachment to this message from an InputStream object.
 void EmailMessage.addAttachment(java.io.InputStream is, java.lang.String fileName)
          Add an attachment to this message from an InputStream object.
 void EmailMessage.addAttachment(java.io.InputStream is, java.lang.String fileName, java.lang.String mimeType)
          Add a attachment to this message from an InputStream object.
 void EmailMessage.addAttachment(java.util.Iterator iterator)
          Add a text attachment to this message from an Iterator of String objects.
 void EmailMessage.addAttachment(java.util.Iterator iterator, java.lang.String fileName)
          Add a text attachment to this message from an Iterator of String objects.
 void EmailMessage.addAttachment(java.util.Iterator iterator, java.lang.String fileName, java.lang.String mimeType)
          Add a text attachment to this message from an Iterator of String objects.
 void EmailMessage.addAttachment(java.lang.String contents)
          Add a text attachment to this message.
 void EmailMessage.addAttachment(java.lang.String[] contents)
          Add a text attachment to this message from an array of String objects.
 void EmailMessage.addAttachment(java.lang.String[] contents, java.lang.String fileName)
          Add a text attachment to this message from an array of String objects.
 void EmailMessage.addAttachment(java.lang.String[] text, java.lang.String fileName, java.lang.String mimeType)
          Add a text attachment to this message from an array of String objects.
 void EmailMessage.addAttachment(java.lang.String contents, java.lang.String fileName)
          Add a text attachment to this message.
 void EmailMessage.addAttachment(java.lang.String contents, java.lang.String fileName, java.lang.String mimeType)
          Add a text attachment to this message.
 void EmailMessage.addBcc(java.util.Collection<?> emailAddresses)
          Add multiple email addresses to the list of "Bcc" addresses to receive this message.
 void EmailMessage.addBcc(EmailAddress emailAddress)
          Add an email address to the list of "Bcc" (blind carbon copy) addresses to receive this message.
 void EmailMessage.addBcc(java.lang.String emailAddress)
          Add an email address to the list of "Bcc" (blind carbon copy) addresses to receive this message.
 void EmailMessage.addBcc(java.lang.String[] emailAddresses)
          Add multiple email addresses to the list of "Bcc" addresses to receive this message.
 void EmailMessage.addCc(java.util.Collection<?> emailAddresses)
          Add multiple email addresses to the list of "Cc" 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.addCc(java.lang.String emailAddress)
          Add an email address to the list of "Cc" addresses to receive this message.
 void EmailMessage.addCc(java.lang.String[] emailAddresses)
          Add multiple email addresses to the list of "Cc" addresses to receive this message.
 void EmailMessage.addTo(java.util.Collection<?> emailAddresses)
          Add multiple email addresses to the list of "To" 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.addTo(java.lang.String emailAddress)
          Add an email address to the list of "To" addresses to receive this message.
 void EmailMessage.addTo(java.lang.String[] emailAddresses)
          Add multiple email addresses to the list of "To" addresses to receive this message.
 java.io.InputStream EmailMessage.getAttachment(int index)
          Get an attachment from the message.
 java.lang.String EmailMessage.getAttachmentContentType(int index)
          Get the content type (i.e., MIME type) of a given attachment.
 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.
 EmailAddress EmailMessage.getSender()
          Get the email address that will be used as the sender.
 java.lang.String EmailMessage.getText()
          Get the text portion of the message.
 java.util.Collection<EmailAddress> EmailMessage.getTo()
          Get the list of "To" addresses to which this message will be sent.
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.
 void SMTPEmailTransport.send(EmailMessage message)
          Attempts to deliver the message via the specified SMTP host.
 void EmailTransport.send(EmailMessage message)
          Send an EmailMessage.
 void EmailMessage.setMultipartSubtype(MultipartSubtype subType)
          Set the multipart subtype.
 void EmailMessage.setSender(EmailAddress senderAddress)
          Set the sender's email address.
 void EmailMessage.setSender(java.lang.String senderAddress)
          Set the sender's email address.
 void EmailMessage.setText(java.io.File file)
          Set the text part of the message from the contents of a file.
 void EmailMessage.setText(java.io.File file, java.lang.String mimeType)
          Set the text part of the message from the contents of a file.
 void EmailMessage.setText(java.io.File file, java.lang.String fileName, java.lang.String mimeType)
          Set the text part of the message from the contents of a file, allowing the caller to specify the file name to use when identifying the text part.
 void EmailMessage.setText(java.io.InputStream is)
          Set the text part of the message from an InputStream object.
 void EmailMessage.setText(java.io.InputStream is, java.lang.String fileName)
          Set the text part of the message from an InputStream object.
 void EmailMessage.setText(java.io.InputStream is, java.lang.String fileName, java.lang.String mimeType)
          Set the text part of the message from an InputStream object.
 void EmailMessage.setText(java.util.Iterator iterator)
          Set the text part of the message from Iterator of String objects.
 void EmailMessage.setText(java.util.Iterator iterator, java.lang.String mimeType)
          Set the text part of the message from Iterator of String objects.
 void EmailMessage.setText(java.util.Iterator iterator, java.lang.String fileName, java.lang.String mimeType)
          Set the text part of the message from an Iterator of String objects.
 void EmailMessage.setText(java.lang.String text)
          Set the text part of the message from a String object.
 void EmailMessage.setText(java.lang.String[] text)
          Set the text part of the message from an array of String objects.
 void EmailMessage.setText(java.lang.String[] text, java.lang.String fileName)
          Set the text part of the message from an array of String objects.
 void EmailMessage.setText(java.lang.String[] text, java.lang.String fileName, java.lang.String mimeType)
          Set the text part of the message from an array of String objects.
 void EmailMessage.setText(java.lang.String text, java.lang.String fileName)
          Set the text part of the message from a String object.
 void EmailMessage.setText(java.lang.String text, java.lang.String fileName, java.lang.String mimeType)
          Set the text part of the message from a String object.
 

Constructors in org.clapper.util.mail that throw EmailException
EmailAddress(EmailAddress emailAddress)
          Constructs a new copy of an existing EmailMessage object.
EmailAddress(java.lang.String address)
          Constructs a new EmailMessage object from an email address string.
EmailMessage(java.lang.String sender)
          Constructs a new EmailMessage object, with the specified sender address.
SMTPEmailTransport()
          Constructs a new SMTPEmailTransport object that will use the local host as its SMTP server.
SMTPEmailTransport(java.lang.String smtpHost)
          Constructs a new SMTPEmailTransport object, with the specified SMTP host.
 



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