Package org.jamesii.core.util

Examples of org.jamesii.core.util.EMail


   *          the mail adresses
   */
  public SendMailHook(String iMailHost, int iPort,
      ComputationTaskHook<I> oldHook, String from, String[] mailAdresses) {
    super(oldHook);
    mail = new EMail(iMailHost, iPort);
    this.sender = from;
    this.mailAdresses = mailAdresses;
  }
View Full Code Here


   *          the mail adresses
   */
  public SendMailHook(String iMailHost, int iPort, String from,
      String[] mailAdresses) {
    super();
    mail = new EMail(iMailHost, iPort);
    this.sender = from;
    this.mailAdresses = mailAdresses;
  }
View Full Code Here

TOP

Related Classes of org.jamesii.core.util.EMail

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.