GreenMail是用来测试用的邮件服务器,它支持SMTP、POP3、IMAP等协议,可以镶嵌在任何JAVA代码之中。
1、配置参数
分客户端和服务器两部分
客户端:
email.protocol=smtps
email.host=localhost
email.port=465
email.username=svba@163.com
email.password=sxj2233
email.auth=true
email.systemEmail=test@211.com
服务器端:
email.protocol=smtp
email.host=localhost
email.username=test@gmail.com
email.password=222
email.auth=true
email.systemEmail=system@gmail.com
1、启动邮件服务器
GreenMail greenmail = new GreenMail(ServerSetup.SMTP);
greenmail.start();