]> git.mxchange.org Git - jfinancials-mailer-lib.git/commitdiff
updated jar(s) + added mail session here as it needs to be project-specific
authorRoland Haeder <roland@mxchange.org>
Thu, 7 Apr 2016 09:57:31 +0000 (11:57 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 7 Apr 2016 09:57:31 +0000 (11:57 +0200)
lib/jmailer-ee.jar
src/org/mxchange/addressbook/mailer/model/delivery/AddressbookMailer.java

index 7710396facf20de11508cf28112692ab857802c0..5da3a3c389ea44f0c9aaf1e9846cd1f990059806 100644 (file)
Binary files a/lib/jmailer-ee.jar and b/lib/jmailer-ee.jar differ
index d54f7dcbb18717c65178f9db632645fb139ea312..a1189a4a91c36ac5cae77fcbd2102da250cbb474 100644 (file)
@@ -16,6 +16,8 @@
  */
 package org.mxchange.addressbook.mailer.model.delivery;
 
+import javax.annotation.Resource;
+import javax.mail.Session;
 import org.mxchange.jmailee.model.delivery.BaseMailer;
 
 /**
@@ -30,4 +32,10 @@ public class AddressbookMailer extends BaseMailer implements DeliverableAddressb
         */
        private static final long serialVersionUID = 17_857_816_596_030_918L;
 
+       /**
+        * Email session
+        */
+       @Resource (name = "jmail/addressbook")
+       private Session mailSession;
+
 }