View Javadoc
1   /**
2    * Copyright 2011 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
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   * A service for doing the actual work of sending email.
32   * @author Kuali Mobility Team (mobility.dev@kuali.org)
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  }