package com.sbr.platform;
//文件名 SendEmail.java
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.List;
import java.util.Properties;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
public class SendEmail
{
public static void main(String[] args) throws MessagingException, UnsupportedEncodingException {
sendEmail();
}
InternetAddress[] address=null;
try {
List list = new ArrayList();//不能使用string类型的类型,这样只能发送一个收件人
String []median=str.split(",");//对输入的多个邮件进行逗号分割
for(int i=0;i<median.length;i++){
list.add(new InternetAddress(median[i]));
}
address =(InternetAddress[])list.toArray(new InternetAddress[list.size()]);
} catch (AddressException e) {
e.printStackTrace();
}
return address;
}
public static void sendEmail() throws MessagingException{
Properties props = new Properties();
// 开启debug调试
props.setProperty("mail.debug", "true");
// 发送服务器需要身份验证
props.setProperty("mail.smtp.auth", "true");
// 设置邮件服务器主机名
props.setProperty("mail.host", "发送邮件服务器地址");
// 发送邮件协议名称
props.setProperty("mail.transport.protocol", "smtp");
// 设置环境信息
Session session = Session.getInstance(props);
// 创建邮件对象
Message msg = new MimeMessage(session);
msg.setSubject("JavaMail测试");
// 设置邮件内容
msg.setText("这是一封由JavaMail发送的邮件!");
// 设置发件人 的名字
msg.setFrom(new InternetAddress("ww"));
Transport transport = session.getTransport();
// 连接邮件服务器
transport.connect("账号", "密码");
// 发送邮件 。设置收件人
transport.sendMessage(msg, Address());
// 关闭连接
transport.close();
}
}
//文件名 SendEmail.java
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.List;
import java.util.Properties;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
public class SendEmail
{
public static void main(String[] args) throws MessagingException, UnsupportedEncodingException {
sendEmail();
}
public static InternetAddress[] Address(){
//多个接收账号
InternetAddress[] address=null;
try {
List list = new ArrayList();//不能使用string类型的类型,这样只能发送一个收件人
String []median=str.split(",");//对输入的多个邮件进行逗号分割
for(int i=0;i<median.length;i++){
list.add(new InternetAddress(median[i]));
}
address =(InternetAddress[])list.toArray(new InternetAddress[list.size()]);
} catch (AddressException e) {
e.printStackTrace();
}
return address;
}
public static void sendEmail() throws MessagingException{
Properties props = new Properties();
// 开启debug调试
props.setProperty("mail.debug", "true");
// 发送服务器需要身份验证
props.setProperty("mail.smtp.auth", "true");
// 设置邮件服务器主机名
props.setProperty("mail.host", "发送邮件服务器地址");
// 发送邮件协议名称
props.setProperty("mail.transport.protocol", "smtp");
// 设置环境信息
Session session = Session.getInstance(props);
// 创建邮件对象
Message msg = new MimeMessage(session);
msg.setSubject("JavaMail测试");
// 设置邮件内容
msg.setText("这是一封由JavaMail发送的邮件!");
// 设置发件人 的名字
msg.setFrom(new InternetAddress("ww"));
Transport transport = session.getTransport();
// 连接邮件服务器
transport.connect("账号", "密码");
// 发送邮件 。设置收件人
transport.sendMessage(msg, Address());
// 关闭连接
transport.close();
}
}