Package com.guilhermechapiewski.fluentmail.validation

Examples of com.guilhermechapiewski.fluentmail.validation.IncompleteEmailException


    sendMessage();
  }

  protected void validateRequiredInfo() {
    if (fromAddress == null) {
      throw new IncompleteEmailException("From address cannot be null");
    }
    if (toAddresses.isEmpty()) {
      throw new IncompleteEmailException(
          "Email should have at least one to address");
    }
    if (subject == null) {
      throw new IncompleteEmailException("Subject cannot be null");
    }
    if (body == null) {
      throw new IncompleteEmailException("Body cannot be null");
    }
  }
View Full Code Here

TOP

Related Classes of com.guilhermechapiewski.fluentmail.validation.IncompleteEmailException

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.