springboot 发送,简单,html格式,带本地附件,带远程附件邮件详解

本文详细讲解了如何使用SpringBoot发送包含HTML格式内容以及本地和远程附件的邮件。步骤包括导入相关依赖、配置邮件参数、确认邮件服务器运行、编写邮件工具类及测试发送。
摘要由CSDN通过智能技术生成

1、导入相应的jar包

<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-mail</artifactId>
</dependency>

2、配置参数

mail:
    host: smtp.qq.com #发送邮件服务器
    username: xxx@qq.com #发送邮件的邮箱地址
    password:  xxxx #客户端授权码,不是邮箱密码,这个在qq邮箱设置里面自动生成的
    properties.mail.smtp.port: 465 #端口号465或587
    from: xxx@qq.com # 发送邮件的地址,和上面username一致可以任意
    properties.mail.smtp.starttls.enable: true
    properties.mail.smtp.starttls.required: true
    properties.mail.smtp.ssl.enable: true
    default-encoding: utf-8

3、检查相应的邮件服务器是否开启服务

4、编写相应的工具

package top.cfl.cflwork.util;

import org.springframework.beans.factory.annotation.Autowired;
import org.s
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值