| org.apache.james.transport.mailets.AbstractAddFooter org.apache.james.transport.mailets.AddFooter
AddFooter | public class AddFooter extends AbstractAddFooter (Code) | | This mailet will attach text to the end of the message (like a footer). Right
now it only supports simple messages without multiple parts.
|
Method Summary | |
public String | getFooterHTML() This is exposed as a method for easy subclassing to provide alternate ways
to get the footer text. | public String | getFooterText() This is exposed as a method for easy subclassing to provide alternate ways
to get the footer text. | public String | getMailetInfo() Return a string describing this mailet. | public void | init() |
text | String text(Code) | | This is the plain text version of the footer we are going to add
|
getFooterHTML | public String getFooterHTML()(Code) | | This is exposed as a method for easy subclassing to provide alternate ways
to get the footer text. By default, this will take the footer text,
converting the linefeeds to <br> tags.
the HTML version of the footer text |
getFooterText | public String getFooterText()(Code) | | This is exposed as a method for easy subclassing to provide alternate ways
to get the footer text.
the footer text |
getMailetInfo | public String getMailetInfo()(Code) | | Return a string describing this mailet.
a string describing this mailet |
init | public void init() throws MessagingException(Code) | | Initialize the mailet
|
|
|