title: 注册发送邮件验证的邮件工具类
date: 2018-1-15 14:18:21
categories: mailUtils
tags: Utils
xl_echo编辑整理,欢迎转载,转载请声明文章来源。更多案例、资料请联系QQ:1280023003
注册发送邮件验证的邮件工具类
package com.echo.shopping.utils;
import java.util.Properties;
import javax.mail.Authenticator;
import javax.mail.Message.RecipientType;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import com.sun.mail.util.MailSSLSocketFactory;
public class MailUtils2 {
/**
* 发送邮件工具类
* @param mailServer 邮件服务器的主机名
* @param loginAccount 登录邮箱的账号
* @param loginAuthCode 登录邮箱时候需要的授权码
* @param sender 发件人
* @param recipients 收件人:支持群发
* @param emailSubject 邮件的主题
* @param emailContent 邮件的内容
* @param emailContentType 邮件内容的类型,支持纯文本:"text/plain;charset=utf-8";,带有Html格式的内容:"text/html;charset=utf-8"
* @return
*/
public static int sendEmail(String mailServer,final String loginAccount,final String loginAuthCode,String sender,String[] recipients,
String emailSubject,String emailContent,String emailContentType){
int res=0;
try {
//跟smtp服务器建立一个连接
Properties p = new Properties();
//设置邮件服务器主机名
p.setProperty("mail.host",mailServer);
//发送服务器需要身份验证,要采用指定用户名密码的方式去认证
p.setProperty("mail.smtp.auth", "true");
//发送邮件协议名称
p.setProperty("mail.transport.protocol", "smtp");
//开启SSL加密,否则会失败
MailSSLSocketFactory sf = new MailSSLSocketFactory();
sf.setTrustAllHosts(true);
p.put("mail.smtp.ssl.enable", "true");
p.put("mail.smtp.ssl.socketFactory", sf);
// 创建session
Session session = Session.getInstance(p, new Authenticator() {
@Override
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(loginAccount,loginAuthCode);
}
});
//设置打开调试状态
session.setDebug(true);
//可以发送几封邮件:可以在这里 for循环多次
//声明一个Message对象(代表一封邮件),从session中创建
MimeMessage msg = new MimeMessage(session);
//邮件信息封装
//1发件人
msg.setFrom(new InternetAddress(sender));
InternetAddress[] receptientsEmail=new InternetAddress[recipients.length];
for(int i=0;i<recipients.length;i++){
receptientsEmail[i]=new InternetAddress(recipients[i]);
}
//一个的收件人
//msg.setRecipient(RecipientType.TO, new InternetAddress("lyflang@163.com"));
//多个收件人
msg.setRecipients(RecipientType.TO,receptientsEmail);
//邮件主题
msg.setSubject(emailSubject);
// 邮件内容
//msg.setContent("Hello, 我是debug!!!", );//纯文本
msg.setContent(emailContent,emailContentType);//发html格式的文本
//发送动作
Transport.send(msg);
System.out.println("邮件发送成功");
res=1;
} catch (Exception e) {
System.out.println("邮件发送失败: "+e.getMessage());
res=0;
}
return res;
}
public static void main(String[] args) throws Exception {
int res=sendEmail("smtp.qq.com", "1280023003@qq.com", "邮件的第三方授权码", "1280023003@qq.com", new String[]{
"收件人" //这里就是一系列的收件人的邮箱了
}, "邮件的主题", "这里就是邮件的正文内容","text/html;charset=utf-8");
/*int res=sendEmail("localhost", "aaa@163.com", "111", "aaa@163.com", new String[]{
"admin@163.com","bbb@163.com" //这里就是一系列的收件人的邮箱了
}, "邮件的主题", "这里就是邮件的正文内容","text/html;charset=utf-8");*/
System.out.println("\n发送结果:"+res);
}
}