| java.lang.Object org.blojsom.plugin.notification.AbstractNotification
All known Subclasses: org.blojsom.plugin.notification.AbstractVelocityEmailNotification,
AbstractNotification | abstract public class AbstractNotification implements Notification(Code) | | |
emailTemplate | protected URL emailTemplate(Code) | | |
AbstractNotification | public AbstractNotification(URL emailTemplate, String charEncoding, String mailServer, String contentType)(Code) | | Create a new abstract notification
Parameters: emailTemplate - E-mail template Parameters: charEncoding - Character encoding Parameters: mailServer - Mail server name Parameters: contentType - Content type |
encodeRegexCharacters | protected String encodeRegexCharacters(String string)(Code) | | Encode regex characters in a string
Parameters: string - Input Encoded regex characters |
getBlindCarbonCopyRecipients | abstract protected List getBlindCarbonCopyRecipients()(Code) | | Retrieve the list of BCC recipients
List of BCC recipients |
getCarbonCopyRecipients | abstract protected List getCarbonCopyRecipients()(Code) | | Retrieve the list of CC recipients
List of CC recipients |
getEmailTemplate | protected URL getEmailTemplate()(Code) | | Retrieve the e-mail template
E-mail template |
getMessage | abstract protected String getMessage() throws Exception(Code) | | Retrieve the e-mail message content
E-mail message throws: Exception - If there is an error getting the content |
getRecipients | abstract protected List getRecipients()(Code) | | Retrieve the list of recipients
Recipients |
getSender | abstract protected String getSender()(Code) | | Retrieve the sender
Sender |
getSubject | abstract protected String getSubject()(Code) | | Retrieve the subject
Subject |
send | public void send() throws EmailException(Code) | | Send the e-mail
throws: EmailException - If there is an error sending the e-mail |
|
|