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

相关文章

Java编译生成多个.class文件的原理和作用

《Java编译生成多个.class文件的原理和作用》作为一名经验丰富的开发者,在Java项目中执行编译后,可能会发现一个.java源文件有时会产生多个.class文件,从技术实现层面详细剖析这一现象... 目录一、内部类机制与.class文件生成成员内部类(常规内部类)局部内部类(方法内部类)匿名内部类二、

SpringBoot实现数据库读写分离的3种方法小结

《SpringBoot实现数据库读写分离的3种方法小结》为了提高系统的读写性能和可用性,读写分离是一种经典的数据库架构模式,在SpringBoot应用中,有多种方式可以实现数据库读写分离,本文将介绍三... 目录一、数据库读写分离概述二、方案一:基于AbstractRoutingDataSource实现动态

Springboot @Autowired和@Resource的区别解析

《Springboot@Autowired和@Resource的区别解析》@Resource是JDK提供的注解,只是Spring在实现上提供了这个注解的功能支持,本文给大家介绍Springboot@... 目录【一】定义【1】@Autowired【2】@Resource【二】区别【1】包含的属性不同【2】@

springboot循环依赖问题案例代码及解决办法

《springboot循环依赖问题案例代码及解决办法》在SpringBoot中,如果两个或多个Bean之间存在循环依赖(即BeanA依赖BeanB,而BeanB又依赖BeanA),会导致Spring的... 目录1. 什么是循环依赖?2. 循环依赖的场景案例3. 解决循环依赖的常见方法方法 1:使用 @La

Java枚举类实现Key-Value映射的多种实现方式

《Java枚举类实现Key-Value映射的多种实现方式》在Java开发中,枚举(Enum)是一种特殊的类,本文将详细介绍Java枚举类实现key-value映射的多种方式,有需要的小伙伴可以根据需要... 目录前言一、基础实现方式1.1 为枚举添加属性和构造方法二、http://www.cppcns.co

Elasticsearch 在 Java 中的使用教程

《Elasticsearch在Java中的使用教程》Elasticsearch是一个分布式搜索和分析引擎,基于ApacheLucene构建,能够实现实时数据的存储、搜索、和分析,它广泛应用于全文... 目录1. Elasticsearch 简介2. 环境准备2.1 安装 Elasticsearch2.2 J

Java中的String.valueOf()和toString()方法区别小结

《Java中的String.valueOf()和toString()方法区别小结》字符串操作是开发者日常编程任务中不可或缺的一部分,转换为字符串是一种常见需求,其中最常见的就是String.value... 目录String.valueOf()方法方法定义方法实现使用示例使用场景toString()方法方法

Java中List的contains()方法的使用小结

《Java中List的contains()方法的使用小结》List的contains()方法用于检查列表中是否包含指定的元素,借助equals()方法进行判断,下面就来介绍Java中List的c... 目录详细展开1. 方法签名2. 工作原理3. 使用示例4. 注意事项总结结论:List 的 contain

Java实现文件图片的预览和下载功能

《Java实现文件图片的预览和下载功能》这篇文章主要为大家详细介绍了如何使用Java实现文件图片的预览和下载功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... Java实现文件(图片)的预览和下载 @ApiOperation("访问文件") @GetMapping("

Spring Boot + MyBatis Plus 高效开发实战从入门到进阶优化(推荐)

《SpringBoot+MyBatisPlus高效开发实战从入门到进阶优化(推荐)》本文将详细介绍SpringBoot+MyBatisPlus的完整开发流程,并深入剖析分页查询、批量操作、动... 目录Spring Boot + MyBATis Plus 高效开发实战:从入门到进阶优化1. MyBatis