*
* @return the newly created MailManager
* @throws Exception if creating the MailManager fails for some reason
*/
public MailManager newMailManager() throws Exception {
MailManager mailManager = ((MailManagerFactory) getFactory(get(configurationData, "mailManagerFactoryConfiguration"))).create();
logger.debug("MailManager subsystem created by its factory");
return mailManager;
}