GreenMail是一组主要用来做测试用的邮件服务器,支持SMTP、POP3、IMAP等,可以用来嵌入到任何的Java程序中。
示例代码
publicvoidtestYourSendingCode()throwsException{GreenMailgreenMail=newGreenMail();//usestestportsbydefaultgreenMail.start();GreenMailUtil.sendTextEmailTest("to@localhost.com","from@localhost.com","subject","body");//replacethiswithyoursendcodeassertEquals("body",GreenMailUtil.getBody(greenMail.getReceivedMessages()[0]));greenMail.stop();//That'sit!}
评论