Package org.opencustomer.connector.mail

Examples of org.opencustomer.connector.mail.MailService


                log.info("no mails send: mail server not configurated");
        } else {
            if(log.isDebugEnabled())
                log.debug("sending reminder mail to: " + mail.getRecipients());
           
            new MailService().send(mail);
        }
    }
View Full Code Here


                            for(EventVO event : events)
                                mail.addEvents(event);
                           
                            if(log.isDebugEnabled())
                                log.debug("sending status mail for: " + user.getUserName());
                            new MailService().send(mail);
                        } else {
                            if(log.isDebugEnabled())
                                log.debug("no status mail for " + user.getUserName() + ", no events and no jobs today");
                        }
                    } catch (AddressException e) {
View Full Code Here

TOP

Related Classes of org.opencustomer.connector.mail.MailService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.