mx4j.tools.mail
Interface SMTPMBean
public
interface
SMTPMBean
Management Interface of a SMTP MBean.
This MBean is meant to send a mail given certain situation. It may be used to listen to a monitor
or timer and send a mail.
To use it you need to add to your classpath the mail.jar from the JavaMail API and the activation.jar
from the Java Activation Framework.
Besides you need to configure all the required fields, at least the serverHost and To fields and if your server
requires login also the serverUsername and serverPassword fields
The subject and content fields are subject to keyword expansions, i.e. some keyworks put between $ signs will
be exapnded this can be used to give a more informative message. The current available expansions are
$date$ -> Current date formatted with locale format
$time$ -> Current tim formatted with locale format
$datetime$ -> Current date and time formatted with locale format
$notification$ -> Notification type
$observed$ -> ObjectName of the observed object
$objectname$ -> This MBean's objectname
Version: $Revision: 1.4 $
Method Summary |
String | getBCC()
Gets a comma separated list of addresses set in the BCC field |
String | getCC()
Gets a comma separated list of addresses set in the CC field |
String | getContent()
Returns the content of the mail |
String | getFromAddress()
Gets the from address attached to mails |
String | getFromName()
Gets the from name presented on the mail |
String | getMimeType()
Gets the MIME type set to the mail |
String | getNotificationName()
Returns the notification which will trigger the mail sending |
ObjectName | getObservedObject()
Gets the MBean's objectname which is being listened |
String | getServerHost()
Gets the server's host as name or IP |
int | getServerPort()
Gets the server's port, by default is 25 |
String | getServerUsername()
Gets the username to log to the server |
String | getSubject()
Gets the mail subject |
int | getTimeout()
Returns the timeout used when sending mails |
String | getTo()
Gets a comma separated list of addresses set in the TO field |
boolean | isLoginToServer()
Indicates whether login to the SMTP server will be attpemted |
void | sendMail()
This will directly execute the send mail. |
void | setBCC(String bccAddresses)
Sets a comma separated list of address which will go in the BCC mail field |
void | setCC(String ccAddresses)
Sets a comma separated list of address which will go in the CC mail field |
void | setContent(String content)
Sets the content of the mail |
void | setFromAddress(String fromAddress)
Sets the form address set to mail |
void | setFromName(String fromName)
Sets the from name presented on the mail |
void | setLoginToServer(boolean login)
Sets whether to login to the SMTP server |
void | setMimeType(String mimeType)
Sets the MIME type, by default it is text/plain |
void | setNotificationName(String notificationName)
Sets the notification name which will trigger the mail sending. |
void | setObservedObject(ObjectName targetMBeanName)
Sets the observed object. |
void | setServerHost(String host)
Sets the server's host, it can be set as name or IP |
void | setServerPassword(String password)
Sets server's passowrd, use with setLoginToServer(true) and setServerUsername |
void | setServerPort(int port)
Sets the server's port. |
void | setServerUsername(String username)
Sets server's username, use with setLoginToServer(true) |
void | setSubject(String subject)
Sets the mail's subject, by default is Empty subject. |
void | setTimeout(int timeout)
Sets the send timeout, by default it is 10 secs |
void | setTo(String toAddresses)
Sets a comma separated list of address which will go in the TO mail field |
public String getBCC()
Gets a comma separated list of addresses set in the BCC field
public String getCC()
Gets a comma separated list of addresses set in the CC field
public String getContent()
Returns the content of the mail
public String getFromAddress()
Gets the from address attached to mails
public String getFromName()
Gets the from name presented on the mail
public String getMimeType()
Gets the MIME type set to the mail
public String getNotificationName()
Returns the notification which will trigger the mail sending
public ObjectName getObservedObject()
Gets the MBean's objectname which is being listened
public String getServerHost()
Gets the server's host as name or IP
public int getServerPort()
Gets the server's port, by default is 25
public String getServerUsername()
Gets the username to log to the server
public String getSubject()
Gets the mail subject
public int getTimeout()
Returns the timeout used when sending mails
public String getTo()
Gets a comma separated list of addresses set in the TO field
public boolean isLoginToServer()
Indicates whether login to the SMTP server will be attpemted
public void sendMail()
This will directly execute the send mail. It can be used to manually testing the MBean or direct execution
public void setBCC(String bccAddresses)
Sets a comma separated list of address which will go in the BCC mail field
public void setCC(String ccAddresses)
Sets a comma separated list of address which will go in the CC mail field
public void setContent(String content)
Sets the content of the mail
public void setFromAddress(String fromAddress)
Sets the form address set to mail
public void setFromName(String fromName)
Sets the from name presented on the mail
public void setLoginToServer(boolean login)
Sets whether to login to the SMTP server
public void setMimeType(String mimeType)
Sets the MIME type, by default it is text/plain
public void setNotificationName(String notificationName)
Sets the notification name which will trigger the mail sending. If it is null any notification
will trigger a mail
public void setObservedObject(ObjectName targetMBeanName)
Sets the observed object. It is expected that the observed MBean is a NotificationBroadcster
On the contrary the MBean will not be listening to events
public void setServerHost(String host)
Sets the server's host, it can be set as name or IP
public void setServerPassword(String password)
Sets server's passowrd, use with setLoginToServer(true) and setServerUsername
public void setServerPort(int port)
Sets the server's port.
public void setServerUsername(String username)
Sets server's username, use with setLoginToServer(true)
public void setSubject(String subject)
Sets the mail's subject, by default is Empty subject. The subject field can contain keyword expansion
public void setTimeout(int timeout)
Sets the send timeout, by default it is 10 secs
public void setTo(String toAddresses)
Sets a comma separated list of address which will go in the TO mail field
Copyright © 2001-2005 The MX4J Contributors. All Rights Reserved.