}
@Test(expected = MailServiceException.class)
public void testSendMailWithNoRecipients() throws Exception {
//Arrange
MailService mailService = new MailServiceImpl(this.sender);
//Act
mailService.sendMail(null, "sender@domain.com", "Sender name", "The subject", "The body");
//Assert
fail("Exception should be thrown");
}