// Sending of first mail.
// /////////////////////////////////////////////////////////////////////
Mail firstMail = new MailImpl();
firstMail.setSubject("first mail");
firstMail.addTo("to@localhost");
firstMail.setFrom("from@localhost");
firstMail.setBodyText("simple body text");
// make sure that mocked mailer did not send email previously
assertEquals(null, ((PostofficeMockImpl) postoffice).getLastSentMail());