java发送带附件的邮件_JavaMail发送邮件、带附件邮件(完整版)

import java.io.File;

import java.security.GeneralSecurityException;

import java.util.Properties;

import javax.activation.DataHandler;

import javax.activation.DataSource;

import javax.activation.FileDataSource;

import javax.mail.Authenticator;

import javax.mail.BodyPart;

import javax.mail.Message;

import javax.mail.MessagingException;

import javax.mail.Multipart;

import javax.mail.PasswordAuthentication;

import javax.mail.Session;

import javax.mail.Transport;

import javax.mail.internet.InternetAddress;

import javax.mail.internet.MimeBodyPart;

import javax.mail.internet.MimeMessage;

import javax.mail.internet.MimeMultipart;

import com.sun.mail.util.MailSSLSocketFactory;/** 带附件的邮件*/

public classMailAttach {public static voidmain(String[] args) throws GeneralSecurityException {//收件人电子邮箱

String to = "XXXXXXX"; //也可以的//发件人电子邮箱

String from = "XXXXXXX@qq.com";//获取系统属性

Properties properties = newProperties();//发送邮件协议

properties.setProperty("mail.transport.protocol", "SMTP");//设置邮件服务器

properties.setProperty("mail.host", "smtp.qq.com");//设置邮件服务器端口

properties.setProperty("mail.smtp.port", "465");//开启SSL加密:QQ邮箱需要

MailSSLSocketFactory sf = newMailSSLSocketFactory();

sf.setTrustAllHosts(true);

properties.put("mail.smtp.ssl.enable", "true");

properties.put("mail.smtp.ssl.socketFactory", sf);//设置邮件服务器是否需要登录认证

properties.setProperty("mail.smtp.auth", "true");//验证账号及密码,密码需要是第三方授权码

Authenticator auth = newAuthenticator() {publicPasswordAuthentication getPasswordAuthentication(){return new PasswordAuthentication("XXXXXXX@qq.com", "授权码");

}

};//获取默认session对象

Session session =Session.getInstance(properties,auth);try{//创建默认的 MimeMessage 对象

MimeMessage message = newMimeMessage(session);//Set From: 头部头字段

message.setFrom(new InternetAddress(from));//Set To: 邮件接收人

message.addRecipient(Message.RecipientType.TO,newInternetAddress(to));//Set Subject: 主题名称

message.setSubject("This is the Subject Line!");//创建消息部分

BodyPart messageBodyPart = newMimeBodyPart();//消息内容

messageBodyPart.setText("TEST/TEST");//创建多重消息

Multipart multipart = newMimeMultipart();//设置文本消息部分

multipart.addBodyPart(messageBodyPart);//附件部分

messageBodyPart = newMimeBodyPart();//把文件,添加到附件1中//数据源

DataSource source = new FileDataSource(new File("附件路径,比如:D:/test.zip"));//设置第一个附件的数据

messageBodyPart.setDataHandler(newDataHandler(source));//设置附件的文件名

messageBodyPart.setFileName("file1.zip");

multipart.addBodyPart(messageBodyPart);

message.setContent(multipart);//发送消息

Transport.send(message);

System.out.println("Sent message successfully....");

}catch(MessagingException mex) {

mex.printStackTrace();

}

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值