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 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   * A service for doing the actual work of sending email.
30   * @author Kuali Mobility Team (mobility.dev@kuali.org)
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  }