测试用的邮件服务器 GreenMail
GreenMail 是一组主要用来做测试用的邮件服务器,支持 SMTP、POP3、IMAP 等,可以用来嵌入到任何的 Java 程序中。
示例代码
public void testYourRetrievingCode() throws Exception { GreenMail greenMail = new GreenMail(); //uses test ports by default greenMail.start(); MimeMessage message = <CONSTRUCT MESSAGE > User user = greenMail.setUser("to@localhost.com", "login-id", "password"); user.deliver(message); GreenMailUtil.sendTextEmailTest("to@localhost.com", "from@localhost.com", subject, body); assertEquals(2, greenMail.getReceivedMessages().length); <PLACE YOUR POP3/IMAP RETRIVE CODE HERE> }
本文由用户 fmms 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!