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