Java 代码之发送邮件

1. javax.mail

1. 引入 jar 包

1
2
3
4
5
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>javax.mail</artifactId>
<version>1.6.2</version>
</dependency>

2. 代码

使用 sina -> QQ 邮箱

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
public static void main(String[] args) throws Exception {

// 创建Properties 类用于记录邮箱的一些属性
final Properties props = new Properties();
// 表示SMTP发送邮件,必须进行身份验证
props.put("mail.smtp.auth", "true");
// SMTP服务器
props.put("mail.smtp.host", "smtp.sina.com");
// 账号
props.put("mail.user", "xxxx@sina.com");
// 密码为16位STMP口令
props.put("mail.password", "9a5fe076b8837621");

// 构建授权信息,用于进行SMTP进行身份验证
Authenticator authenticator = new Authenticator() {

@Override
protected PasswordAuthentication getPasswordAuthentication() {
// 用户名、密码
String userName = props.getProperty("mail.user");
String password = props.getProperty("mail.password");
return new PasswordAuthentication(userName, password);
}
};
// 使用环境属性和授权信息,创建邮件会话
Session mailSession = Session.getInstance(props, authenticator);
// 创建邮件消息
MimeMessage message = new MimeMessage(mailSession);
// 设置发件人
InternetAddress form = new InternetAddress(props.getProperty("mail.user"));
message.setFrom(form);

// 设置收件人的邮箱
InternetAddress to = new InternetAddress("xxxx@qq.com");
message.setRecipient(Message.RecipientType.TO, to);

// 设置邮件标题
message.setSubject("测试邮件");

// 设置邮件的内容体
message.setContent("这是一封测试邮件", "text/html;charset=UTF-8");

// 最后发送邮件啦
Transport.send(message);
System.out.println("发送结束");
}

2. jakarta.mail

TODO