项目简介

本项目基于SpringBoot2.1.1.RELEASE编写,演示了如何在SpringBoot项目中集成邮件发送功能。

项目结构

├──src
│  ├──main
│  └──test
├──pom.xml
└──README.md

邮件发送配置

在application.properties中设置邮件相关参数

# SMTP服务器的地址
spring.mail.host=smtp.163.com

# SMTP服务器的端口号
spring.mail.port=465

# 邮箱账号
spring.mail.username=your_email_address

# 邮箱密码或授权码
spring.mail.password=your_email_password

# 是否开启SSL,不开启的话就是TLS
spring.mail.properties.mail.smtp.ssl.enable=true

如何使用

在需要发送邮件的地方调用MailUtils.sendMail(String toAddress, String subject, String content)即可。

可能的搜索关键词

SpringBoot2.1.1.RELEASE, 邮件发送, 邮件功能集成, 邮件服务器, SMTP, TLS, SSL, Demo