[color=red][b][size=xx-large]JavaMail邮件发送Demo[/size][/b][/color]
import com.org.momo.javaMail邮件.MailSenderInfo;
import com.org.momo.javaMail邮件.SimpleMailSender;
public class Demo {
public static void main(String[] args) throws InterruptedException{
//这个类主要是设置邮件
MailSenderInfo mailInfo = new MailSenderInfo();
mailInfo.setMailServerHost("smtp.126.com");
mailInfo.setMailServerPort("25");
// true则需要身份认证,将账号和密码设置到 密码验证器 中
mailInfo.setValidate(true);
mailInfo.setUserName("xxx@126.com");
mailInfo.setPassword("xxxx");//您的邮箱密码
// 创建邮件发送者和接受者的地址
mailInfo.setFromAddress("xxx@126.com");
mailInfo.setToAddress("xxx@qq.com");
//设置主题和内容
mailInfo.setSubject("测试标题:圣诞快乐");
mailInfo.setContent("测试内容:送你一朵玫瑰!");
//发送邮件
SimpleMailSender sms = new SimpleMailSender();
int i=0 ;
while(sms.sendTextMail(mailInfo))//发送文体格式
{
System.out.println("发送第"+(i+1)+"封邮件成功!") ;
new Thread().sleep(1) ;
i++ ;
if(i>=5) break ;
}
//sms.sendHtmlMail(mailInfo);//发送html格式
}
}