| Package | Description |
|---|---|
| com.openexchange.mail |
| Modifier and Type | Method and Description |
|---|---|
static MailServletInterface |
MailServletInterface.getInstance(com.openexchange.session.Session session)
Gets a proper implementation of
MailServletInterface
NOTE: Don't forget to invoke close(boolean) after usage
MailInterface mailInterface = MailInterface.getInstance(session);
try {
//Do some stuff here...
} finally {
mailInterface.close(true);
}
|