Upgraded mail libraries to latest version

This commit is contained in:
2013-10-04 14:12:18 +02:00
parent 84c86b8d9f
commit 55ed5ac764
2 changed files with 59 additions and 3 deletions
+3 -3
View File
@@ -65,9 +65,9 @@
</dependency>
<!-- Mail Libraries -->
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4.1</version>
<groupId>com.sun.mail</groupId>
<artifactId>javax.mail</artifactId>
<version>1.5.0</version>
</dependency>
<!-- Library for reading/writing XDR Format (MDA) -->
<dependency>
@@ -0,0 +1,56 @@
/**
*
* Copyright 2013 Paul Scherrer Institute. All rights reserved.
*
* This code is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* This code is distributed in the hope that it will be useful, but without any
* warranty; without even the implied warranty of merchantability or fitness for
* a particular purpose. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this code. If not, see <http://www.gnu.org/licenses/>.
*
*/
package ch.psi.fda.notification;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import ch.psi.fda.model.v1.Recipient;
/**
* @author ebner
*
*/
public class NotificationAgentTest {
/**
* @throws java.lang.Exception
*/
@Before
public void setUp() throws Exception {
}
/**
* @throws java.lang.Exception
*/
@After
public void tearDown() throws Exception {
}
@Test
public void testSendNotification() {
NotificationAgent a = new NotificationAgent("mail.psi.ch", "supertoll@psi.ch");
Recipient r = new Recipient();
r.setValue("simon.ebner@psi.ch");
a.getRecipients().add(r);
a.sendNotification("super","hello worl this is a test", true, true);
}
}