JAVA MAIL 发送邮件(SSL加密方式,TSL加密方式)

2023-12-13 02:58

本文主要是介绍JAVA MAIL 发送邮件(SSL加密方式,TSL加密方式),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、一般配置

发送邮件需要用到  mail包 maven 依赖如下:

1 <!-- https://mvnrepository.com/artifact/javax.mail/mail -->
2         <dependency>
3             <groupId>javax.mail</groupId>
4             <artifactId>mail</artifactId>
5             <version>1.4</version>
6         </dependency>

SSL加密方式需要用到MailSSLSocketFactory类

<!-- https://mvnrepository.com/artifact/com.sun.mail/javax.mail --><dependency><groupId>com.sun.mail</groupId><artifactId>javax.mail</artifactId><version>1.4.4</version></dependency>

 

获取配置文件:

复制代码
 1 //获取邮箱发送邮件的配置信息2     public Properties getEmailProperties(){3         Properties props = new Properties();4         String host = evn.getProperty("email.host");5         String protocol = evn.getProperty("email.protocol");6         String port = evn.getProperty("email.port");7         String from = evn.getProperty("email.from");8         String pwd = evn.getProperty("email.password");9         props.put("mail.smtp.host", host);//设置服务器地址  
10         props.put("mail.store.protocol" , protocol);//设置协议  
11         props.put("mail.smtp.port", port);//设置端口  
12         props.put("from" , from);  
13         props.put("pwd" , pwd);  
14         props.put("mail.smtp.auth" , "true");
15         return props;
16     }
复制代码

 

 

邮件发送代码类:

复制代码
  1 /** 2  *3  * @file springBootExample.example.infrastructure4  * 5  */6 package com.tyky.educloud.platform.util;7 8 /** 9  * @ClassName: SendEmail 10  * @Description: TODO(这里用一句话描述这个类的作用) 11  * @author hoojjack 12  * @date 2017年7月19日 下午3:23:42 13  *  14  */15 import java.util.Date;16 import java.util.Properties;17 18 import javax.mail.Authenticator;19 import javax.mail.Message;20 import javax.mail.MessagingException;21 import javax.mail.PasswordAuthentication;22 import javax.mail.Session;23 import javax.mail.Transport;24 import javax.mail.internet.AddressException;25 import javax.mail.internet.InternetAddress;26 import javax.mail.internet.MimeMessage;27 28 public class SendEmail {29 30     public static Properties props = new Properties();31 32     public static void setProps(Properties props) {33         SendEmail.props = props;34     }35 36     public static Properties getProps() {37         return props;38     }39 40     /**41      * 获取Session42      * 43      * @return44      */45     private static Session getSession(final String from, final String pwd) {46 47         Authenticator authenticator = new Authenticator() {48 49             @Override50             protected PasswordAuthentication getPasswordAuthentication() {51                 return new PasswordAuthentication(from, pwd);52             }53 54         };55         Session session = Session.getDefaultInstance(props, authenticator);56 57         return session;58     }59 60     public static void send(String content, String toEmail) throws AddressException, MessagingException {61         Properties properties = getProps();62         String from = properties.getProperty("from");63         String pwd = properties.getProperty("pwd");64         String subject = properties.getProperty("subject");65         66         if (null == from || null == pwd) {67             System.out.println("发送邮箱为空");68             return;69         }70         if (null == subject) {71             subject = "平台";72         }73         Session session = getSession(from, pwd);74         // Instantiate a message75         Message msg = new MimeMessage(session);76         // Set message attributes77         msg.setFrom(new InternetAddress(from));78         InternetAddress[] address = { new InternetAddress(toEmail) };79         msg.setRecipients(Message.RecipientType.TO, address);80         msg.setSubject(subject);81         msg.setSentDate(new Date());82         msg.setContent(content, "text/html;charset=utf-8");83         // Send the message84         Transport.send(msg);85     }86 87     public static String generateContent(String contentTitle, String url, String username, String email,88             String validateCode) {89 90         // String validataCode = MD5Util.encode2hex(email);91 92         /// 邮件的内容93         StringBuffer sb = new StringBuffer(contentTitle);94         sb.append("<a href=\"" + url + "?username=");95         sb.append(username);96         sb.append("&email=");97         sb.append(email);98         sb.append("&validateCode=");99         sb.append(validateCode);
100         sb.append("\">" + url + "?username=");
101         sb.append(username);
102         sb.append("&email=");
103         sb.append(email);
104         sb.append("&validateCode=");
105         sb.append(validateCode);
106         sb.append("</a>");
107         return sb.toString();
108     }
109 
110 }
复制代码

 

邮件发送完整的代码:

复制代码
  1 /** 2  * @ClassName: SendEmail 3  * @Description: TODO(这里用一句话描述这个类的作用) 4  * @author hoojjack 5  * @date 2017年7月19日 下午3:23:42 6  *  7  */8 import java.util.Date;9 import java.util.Properties;10 11 import javax.mail.Authenticator;12 import javax.mail.Message;13 import javax.mail.MessagingException;14 import javax.mail.PasswordAuthentication;15 import javax.mail.Session;16 import javax.mail.Transport;17 import javax.mail.internet.AddressException;18 import javax.mail.internet.InternetAddress;19 import javax.mail.internet.MimeMessage;20 21 public class SendEmail {22 23     public static Properties props = new Properties();24 25     public static void setProps(Properties props) {26         SendEmail.props = props;27     }28 29     public static Properties getProps() {30         props.put("mail.smtp.host", "smtp.163.com");// 设置服务器地址31         props.put("mail.store.protocol", "smtp.163.com");// 设置协议32         props.put("mail.smtp.port", 25);// 设置端口33         props.put("from", "XXX");34         props.put("pwd", "XXX");35         props.put("mail.smtp.auth", "true");36     }37 38     /**39      * 获取Session40      * 41      * @return42      */43     private static Session getSession(final String from, final String pwd) {44 45         Authenticator authenticator = new Authenticator() {46 47             @Override48             protected PasswordAuthentication getPasswordAuthentication() {49                 return new PasswordAuthentication(from, pwd);50             }51 52         };53         Session session = Session.getDefaultInstance(props, authenticator);54 55         return session;56     }57 58     public static void send(String content, String toEmail) throws AddressException, MessagingException {59         Properties properties = getProps();60         String from = properties.getProperty("from");61         String pwd = properties.getProperty("pwd");62         String subject = properties.getProperty("subject");63         64         if (null == from || null == pwd) {65             System.out.println("发送邮箱为空");66             return;67         }68         if (null == subject) {69             subject = "平台";70         }71         Session session = getSession(from, pwd);72         // Instantiate a message73         Message msg = new MimeMessage(session);74         // Set message attributes75         msg.setFrom(new InternetAddress(from));76         InternetAddress[] address = { new InternetAddress(toEmail) };77         msg.setRecipients(Message.RecipientType.TO, address);78         msg.setSubject(subject);79         msg.setSentDate(new Date());80         msg.setContent(content, "text/html;charset=utf-8");81         // Send the message82         Transport.send(msg);83     }84 85     public static String generateContent(String contentTitle, String url, String username, String email,86             String validateCode) {87 88         // String validataCode = MD5Util.encode2hex(email);89 90         /// 邮件的内容91         StringBuffer sb = new StringBuffer(contentTitle);92         sb.append("<a href=\"" + url + "?username=");93         sb.append(username);94         sb.append("&email=");95         sb.append(email);96         sb.append("&validateCode=");97         sb.append(validateCode);98         sb.append("\">" + url + "?username=");99         sb.append(username);
100         sb.append("&email=");
101         sb.append(email);
102         sb.append("&validateCode=");
103         sb.append(validateCode);
104         sb.append("</a>");
105         return sb.toString();
106     }
107 
108 }
复制代码

 

 

 以下是两种不同加密方式的代码,与上面默认25端口的方式差别较小,注意不同加密方式红色部分。

 

1. JavaMail – via TLS

 

复制代码
 1 package com.mkyong.common;2 3 import java.util.Properties;4 5 import javax.mail.Message;6 import javax.mail.MessagingException;7 import javax.mail.PasswordAuthentication;8 import javax.mail.Session;9 import javax.mail.Transport;
10 import javax.mail.internet.InternetAddress;
11 import javax.mail.internet.MimeMessage;
12 
13 public class SendMailTLS {
14 
15     public static void main(String[] args) {
16 
17         final String username = "username@gmail.com";
18         final String password = "password";
19 
20         Properties props = new Properties();
21         props.put("mail.smtp.auth", "true");
22         props.put("mail.smtp.starttls.enable", "true");
23         props.put("mail.smtp.host", "smtp.gmail.com");
24         props.put("mail.smtp.port", "587");
25 
26         Session session = Session.getInstance(props,
27           new javax.mail.Authenticator() {
28             protected PasswordAuthentication getPasswordAuthentication() {
29                 return new PasswordAuthentication(username, password);
30             }
31           });
32 
33         try {
34             Message message = new MimeMessage(session);
35             message.setFrom(new InternetAddress("from-email@gmail.com"));
36             message.setRecipients(Message.RecipientType.TO,
37                 InternetAddress.parse("to-email@gmail.com"));
38             message.setSubject("Testing Subject");
39             message.setText("Dear Mail Crawler,"
40                 + "\n\n No spam to my email, please!");
41 
42             Transport.send(message);
43             System.out.println("Done");
44 
45         } catch (MessagingException e) {
46             throw new RuntimeException(e);
47         }
48     }
49 }
复制代码

 

2. JavaMail – via SSL

复制代码
package com.mkyong.common;import java.util.Properties;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;public class SendMailSSL {public static void main(String[] args) {Properties props = new Properties();props.put("mail.smtp.host", "smtp.gmail.com");props.put("mail.smtp.socketFactory.port", "465");props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");props.put("mail.smtp.auth", "true");props.put("mail.smtp.port", "465");Session session = Session.getDefaultInstance(props,new javax.mail.Authenticator() {protected PasswordAuthentication getPasswordAuthentication() {return new PasswordAuthentication("username","password");}});try {Message message = new MimeMessage(session);message.setFrom(new InternetAddress("from@no-spam.com"));message.setRecipients(Message.RecipientType.TO,InternetAddress.parse("to@no-spam.com"));message.setSubject("Testing Subject");message.setText("Dear Mail Crawler," +"\n\n No spam to my email, please!");Transport.send(message);System.out.println("Done");} catch (MessagingException e) {throw new RuntimeException(e);}}
}
复制代码

 注意:如果以上ssl不行可以尝试将ssl红色部分用以下代码替换:

复制代码
1      MailSSLSocketFactory sf = null;
2      try {
3            sf = new MailSSLSocketFactory();
4            sf.setTrustAllHosts(true);
5      } catch (GeneralSecurityException e1) {
6            e1.printStackTrace();
7      }
8      props.put("mail.smtp.ssl.enable", "true");
9      props.put("mail.smtp.ssl.socketFactory", sf);
复制代码

 

这篇关于JAVA MAIL 发送邮件(SSL加密方式,TSL加密方式)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/486897

相关文章

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

Java进阶13讲__第12讲_1/2

多线程、线程池 1.  线程概念 1.1  什么是线程 1.2  线程的好处 2.   创建线程的三种方式 注意事项 2.1  继承Thread类 2.1.1 认识  2.1.2  编码实现  package cn.hdc.oop10.Thread;import org.slf4j.Logger;import org.slf4j.LoggerFactory

JAVA智听未来一站式有声阅读平台听书系统小程序源码

智听未来,一站式有声阅读平台听书系统 🌟&nbsp;开篇:遇见未来,从“智听”开始 在这个快节奏的时代,你是否渴望在忙碌的间隙,找到一片属于自己的宁静角落?是否梦想着能随时随地,沉浸在知识的海洋,或是故事的奇幻世界里?今天,就让我带你一起探索“智听未来”——这一站式有声阅读平台听书系统,它正悄悄改变着我们的阅读方式,让未来触手可及! 📚&nbsp;第一站:海量资源,应有尽有 走进“智听

内核启动时减少log的方式

内核引导选项 内核引导选项大体上可以分为两类:一类与设备无关、另一类与设备有关。与设备有关的引导选项多如牛毛,需要你自己阅读内核中的相应驱动程序源码以获取其能够接受的引导选项。比如,如果你想知道可以向 AHA1542 SCSI 驱动程序传递哪些引导选项,那么就查看 drivers/scsi/aha1542.c 文件,一般在前面 100 行注释里就可以找到所接受的引导选项说明。大多数选项是通过"_