Uses of Interface
org.jboss.seam.mail.api.MailMessage

Packages that use MailMessage
org.jboss.seam.mail.api   
 

Uses of MailMessage in org.jboss.seam.mail.api
 

Methods in org.jboss.seam.mail.api that return MailMessage
 MailMessage MailMessage.addAttachment(Collection<EmailAttachment> attachments)
          Adds a Collection of Attachments to the message
 MailMessage MailMessage.addAttachment(ContentDisposition contentDispostion, File file)
          Adds Attachment to the message
 MailMessage MailMessage.addAttachment(EmailAttachment attachment)
          Adds Attachment to the message
 MailMessage MailMessage.addAttachment(String fileName, String mimeType, ContentDisposition contentDispostion, byte[] bytes)
          Adds Attachment to the message
 MailMessage MailMessage.addAttachment(String fileName, String mimeType, ContentDisposition contentDispostion, InputStream inputStream)
          Adds Attachment to the message
 MailMessage MailMessage.addHeader(String name, String value)
          Add header to the message.
 MailMessage MailMessage.bcc(Collection<EmailContact> emailContacts)
          Add collection of BCC (Blind Carbon Copy) recipients
 MailMessage MailMessage.bcc(EmailContact emailContact)
          Add BCC recipient
 MailMessage MailMessage.bcc(javax.mail.internet.InternetAddress emailAddress)
          Add BCC (Blind Carbon Copy) recipient
 MailMessage MailMessage.bcc(String address)
          Convenience method to add a BCC (Blind Carbon Copy) recipient
 MailMessage MailMessage.bcc(String address, String name)
          Convenience method to add a BCC (Blind Carbon Copy) recipient
 MailMessage MailMessage.bodyHtml(String html)
          Sets the body of the message a HTML body represented by the supplied string
 MailMessage MailMessage.bodyHtml(TemplateProvider htmlBody)
          Sets the HTML body of the message to the HTML output of the given template
 MailMessage MailMessage.bodyHtmlTextAlt(String html, String text)
          Sets the body of the message to a HTML body with a plain text alternative
 MailMessage MailMessage.bodyHtmlTextAlt(TemplateProvider htmlBody, TemplateProvider textbody)
          Sets the body of the message to a HTML body with a plain text alternative output of the given templates
 MailMessage MailMessage.bodyText(String text)
          Sets the body of the message a plan text body represented by the supplied string
 MailMessage MailMessage.bodyText(TemplateProvider textbody)
          Sets the text body of the message to the plain text output of the given template
 MailMessage MailMessage.cc(Collection<EmailContact> emailContacts)
          Add collection of CC (Carbon Copy) recipients
 MailMessage MailMessage.cc(EmailContact emailContact)
          Add CC recipient
 MailMessage MailMessage.cc(javax.mail.internet.InternetAddress emailAddress)
          Add CC (Carbon Copy) recipient
 MailMessage MailMessage.cc(String address)
          Convenience method to add a CC (Carbon Copy) recipient
 MailMessage MailMessage.cc(String address, String name)
          Convenience method to add a CC (Carbon Copy) recipient
 MailMessage MailMessage.contentType(ContentType contentType)
          Set the Content Type of the message
 MailMessage MailMessage.deliveryReceipt(String address)
          Request a delivery receipt "Return-Receipt-To" to the given address
 MailMessage MailMessage.from(Collection<EmailContact> emailContacts)
          Adds a Collection of EmailContact as FROM addresses
 MailMessage MailMessage.from(EmailContact emailContact)
          Adds a From Address
 MailMessage MailMessage.from(javax.mail.internet.InternetAddress emailAddress)
          Adds a From Address
 MailMessage MailMessage.from(String address)
          Convenience method to add a FROM address
 MailMessage MailMessage.from(String address, String name)
          Convenience method to add a FROM address
 MailMessage MailMessage.iCal(String htmlSummary, byte[] bytes)
          Used for creating iCal Calendar Invites.
 MailMessage MailMessage.importance(MessagePriority messagePriority)
          Sets the importance level of the message with a given MessagePriority
 MailMessage MailMessage.messageId(String messageId)
          Set the Message-ID for the message.
 MailMessage MailMessage.put(Map<String,Object> values)
          Places a Map of variable in the templating engines context
 MailMessage MailMessage.put(String name, Object value)
          Places a variable in the templating engines context
 MailMessage MailMessage.readReceipt(String address)
          Request a read receipt "Disposition-Notification-To" to a given address
 MailMessage MailMessage.replyTo(Collection<EmailContact> emailContacts)
          Adds a Collection of EmailContact as REPLY-TO addresses
 MailMessage MailMessage.replyTo(EmailContact emailContact)
          Adds a REPLY-TO Address
 MailMessage MailMessage.replyTo(javax.mail.internet.InternetAddress emailAddress)
          Adds a REPLY-TO Address
 MailMessage MailMessage.replyTo(String address)
          Convenience method to add a REPLY-TO address
 MailMessage MailMessage.replyTo(String address, String name)
          Convenience method to add a REPLY-TO name and address
 MailMessage MailMessage.subject(String value)
          Set the subject on the message
 MailMessage MailMessage.subject(TemplateProvider subject)
          Set the template to be used for the message subject
 MailMessage MailMessage.to(Collection<EmailContact> emailContacts)
          Convenience method to add a TO recipients
 MailMessage MailMessage.to(EmailContact emailContact)
          Add TO recipient
 MailMessage MailMessage.to(javax.mail.internet.InternetAddress emailAddress)
          Add TO recipient
 MailMessage MailMessage.to(String address)
          Convenience method to add a TO address
 MailMessage MailMessage.to(String address, String name)
          Convenience method to add a TO recipient
 



Copyright © 2011 Seam Framework. All Rights Reserved.