14-springboot系列: 邮件发送
今天讲解springboot的 spring-boot-starter-mail 邮件发送,业务场景: 注册验证,忘记密码或者是给用户发送营销信息 等。 1、pom配置 < dependencies > < dependency > < groupId > org.springframework.boot </ groupId > < artifactId > spring-boot-starter </ artifactId > </ dependency > < dependency > < groupId > org.springframework.boot </ groupId > < artifactId > spring-boot-starter-mail </ artifactId > </ dependency > </ dependencies > 2、application.propertis配置邮箱 #邮箱服务器地址 spring.mail.host=smtp.163.com #用户名 spring.mail.username= z13128600812@ 163 .com #开通授权码 spring.mail.password=********** spring.mail. default -encoding=UTF- 8 spring.mail