1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 package org.kuali.mobility.email.service;
16
17 import org.apache.commons.lang.StringUtils;
18 import org.apache.commons.mail.DefaultAuthenticator;
19 import org.apache.commons.mail.Email;
20 import org.apache.commons.mail.EmailException;
21 import org.apache.commons.mail.SimpleEmail;
22 import org.slf4j.Logger;
23 import org.slf4j.LoggerFactory;
24 import org.springframework.beans.factory.annotation.Autowired;
25 import org.springframework.beans.factory.annotation.Qualifier;
26 import org.springframework.stereotype.Service;
27
28 import java.util.Properties;
29
30
31
32
33
34 @Service
35 public class EmailServiceImpl implements EmailService {
36
37 private static final Logger LOG = LoggerFactory
38 .getLogger(EmailServiceImpl.class);
39
40 @Autowired
41 @Qualifier("kmeProperties")
42 private Properties kmeProperties;
43
44 public Properties getKmeProperties() {
45 return kmeProperties;
46 }
47
48 public void setKmeProperties(Properties kmeProperties) {
49 this.kmeProperties = kmeProperties;
50 }
51
52 @Override
53 public boolean sendEmail(String body, String subject, String emailAddressTo, String emailAddressFrom) {
54 boolean emailSent = false;
55
56 if(emailAddressFrom == null || StringUtils.isEmpty(emailAddressFrom)){
57 emailAddressFrom = kmeProperties.getProperty("email.from");
58 if(emailAddressFrom == null){
59 return emailSent;
60 }
61 }
62
63 if(emailAddressTo == null || StringUtils.isEmpty(emailAddressTo)){
64 return emailSent;
65 }
66
67 if(subject == null || StringUtils.isEmpty(subject)){
68 return emailSent;
69 }
70
71 if(body == null || StringUtils.isEmpty(body)){
72 return emailSent;
73 }
74
75 try{
76 Email email = new SimpleEmail();
77 email.setHostName(kmeProperties.getProperty("email.host"));
78 email.setSmtpPort(Integer.parseInt(kmeProperties.getProperty("email.port")));
79 email.setAuthenticator(new DefaultAuthenticator(kmeProperties.getProperty("email.username"),
80 kmeProperties.getProperty("email.passsword")));
81 email.setSSLOnConnect(true);
82 email.setFrom(emailAddressFrom);
83 email.setSubject(subject);
84 email.setMsg(body);
85 email.addTo(emailAddressTo);
86 email.send();
87 emailSent = true;
88 LOG.debug("Mail Sent...");
89 }catch(EmailException e){
90 LOG.error("Mail send failed...",e);
91 }
92 return emailSent;
93 }
94
95 }