Mail.buildMessage(new SimpleEmail());
}
@Test(expected = MailException.class)
public void buildMessageWithoutRecipient() throws EmailException {
new YalpBuilder().build();
Email email = new SimpleEmail();
email.setFrom("from@yalpframework.com");
email.setSubject("subject");
Mail.buildMessage(email);