public interface IEmailMessage
Modifier and Type | Method and Description |
---|---|
void |
send()
Send the email using the product SMTP subsystem.
|
void |
setPlainTextMessage(java.lang.String message)
Message body of the email in "plain text" format.
|
void |
setSubject(java.lang.String subject)
Email subject line
|
void |
setTo(java.lang.String recipients)
Recipient address(es) for the email
|
void setTo(java.lang.String recipients) throws java.lang.Exception
recipients
- comma, space or semi-colon separated list of recipients.java.lang.Exception
void setSubject(java.lang.String subject) throws java.lang.Exception
java.lang.Exception
void setPlainTextMessage(java.lang.String message) throws java.lang.Exception
java.lang.Exception
void send() throws java.lang.Exception
java.lang.Exception