javaweb使用QQ邮箱SMTP服务发送邮件
javaweb使用QQ邮箱SMTP服务发送邮件
1.导入依赖
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.5.0-b01</version>
</dependency>
2.开启服务
3.代码实现
@GetMapping("/mailbox")
public void getbox(HttpServletRequest request,HttpServletResponse response) throws MessagingException, IOException {
String id = request.getParameter("postbox");
System.out.println(id);
// 创建Properties 类用于记录邮箱的一些属性
final Properties props = new Properties();
// 表示SMTP发送邮件,必须进行身份验证
props.put(“mail.smtp.auth”, “true”);
// 此处填写SMTP服务器
props.put(“mail.smtp.host”, “smtp.qq.com”);
// 端口号
props.put(“mail.smtp.port”, “25”);
// 此处填写你的账号
props.put(“mail.user”, “xxxxx账号”);
// 此处的密码就是前面说的16位STMP授权码
props.put(“mail.password”, “xxxx授权码”);
// 构建授权信息,用于进行SMTP进行身份验证
Authenticator authenticator = new Authenticator() {
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(id);
message.setRecipient(Message.RecipientType.TO, to);
int max=10000,min=1;
int ran2 = (int) (Math.random()*(max-min)+min);
System.out.println(ran2);
// 设置邮件标题
message.setSubject(“java邮件”);
String log=“邮箱验证码”+ran2;
// 设置邮件的内容体
message.setContent(log, “text/html;charset=UTF-8”);
// 最后当然就是发送邮件啦
Transport.send(message);
System.out.println("发送成功");
OutputStream out = new FileOutputStream("保存路径//qq.eml");
message.writeTo(out);
out.flush();
out.close();
System.out.println("保存成功");
}