2 * Copyright 2006 the original author or authors.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package org.wamblee.crawler.kiss.notification;
18 import java.util.Properties;
20 import javax.mail.Session;
22 import org.apache.commons.mail.Email;
23 import org.apache.commons.mail.EmailException;
28 public class MailServer {
34 private String _username;
36 private String _password;
39 * Constructs the mail server.
42 * Host name of the SMTP server.
44 * Port name of the SMTP server.
46 * Username to use for authentication or null if no
47 * authentication is required.
49 * Password to use for authentication or null if no authenticatio
52 public MailServer(String aHost, int aPort, String aUsername,
56 _username = aUsername;
57 _password = aPassword;
65 * @throws EmailException
66 * In case of problems sending the mail.
68 public void send(Email aMail) throws EmailException {
69 Properties props = new Properties();
70 props.put("mail.transport.protocol", "smtp");
71 props.put("mail.smtp.host", _host);
72 props.put("mail.smtp.port", "" + _port);
74 Session mailSession = Session.getInstance(props,
75 new UsernamePasswordAuthenticator(_username, _password));
76 aMail.setMailSession(mailSession);