Package org.nxplanner.mail

Examples of org.nxplanner.mail.EmailMessage.send()


                email.setSubject(resources.getMessage("integrations.notification.subject"));
                String link = request.getScheme() + "://" + request.getServerName() + ":" +
                        request.getServerPort() + request.getContextPath() +
                        "/do/view/integrations?projectId=" + integration.getProjectId();
                email.setBody(resources.getMessage("integrations.notification.text", link));
                email.send();
            } catch (Exception ex) {
                log.error("couldn't send notification", ex);
            }
        }
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.