Package com.agiletec.plugins.jpnewsletter.aps.system.services.newsletter.model

Examples of com.agiletec.plugins.jpnewsletter.aps.system.services.newsletter.model.Subscriber


  }
 
  @Override
  public void resetSubscriber(String mailAddress) throws ApsSystemException {
    try {
      Subscriber subscriber = new Subscriber();
      subscriber.setMailAddress(mailAddress);
      subscriber.setSubscriptionDate(new Date());
      subscriber.setActive(false);
      String token = this.createToken(mailAddress);
      this.getNewsletterDAO().updateSubscriber(subscriber, token);
      this.sendSubscriptionMail(mailAddress, token);
    } catch (Throwable t) {
      ApsSystemUtils.logThrowable(t, this, "resetSubscriber");
View Full Code Here

TOP

Related Classes of com.agiletec.plugins.jpnewsletter.aps.system.services.newsletter.model.Subscriber

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.