暂存
This commit is contained in:
@@ -91,6 +91,31 @@ spring:
|
|||||||
web:
|
web:
|
||||||
resources:
|
resources:
|
||||||
static-locations: file:/home/ruoyi/
|
static-locations: file:/home/ruoyi/
|
||||||
|
mail:
|
||||||
|
# 邮件服务地址
|
||||||
|
host: smtp.163.com
|
||||||
|
# 默认端口25,可不写
|
||||||
|
port: 25
|
||||||
|
# 编码格式
|
||||||
|
default-encoding: utf-8
|
||||||
|
# 发送者用户名
|
||||||
|
username: xxx@163.com
|
||||||
|
# 授权码,刚才获取的代码
|
||||||
|
password: xxx
|
||||||
|
# 其它参数
|
||||||
|
# properties:
|
||||||
|
# mail:
|
||||||
|
# smtp:
|
||||||
|
# # 如果是用 SSL 方式,需要配置如下属性
|
||||||
|
# ssl:
|
||||||
|
# enable: true
|
||||||
|
# required: true
|
||||||
|
# # 邮件接收时间的限制,单位毫秒
|
||||||
|
# timeout: 10000
|
||||||
|
# # 连接时间的限制,单位毫秒
|
||||||
|
# connectiontimeout: 10000
|
||||||
|
# # 邮件发送时间的限制,单位毫秒
|
||||||
|
# writetimeout: 10000
|
||||||
|
|
||||||
# token配置
|
# token配置
|
||||||
token:
|
token:
|
||||||
|
|||||||
@@ -152,6 +152,13 @@
|
|||||||
<version>1.9.1</version>
|
<version>1.9.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- 发送邮件-->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-mail</artifactId>
|
||||||
|
<version>3.1.4</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
@@ -1,13 +1,21 @@
|
|||||||
package com.ruoyi.common.utils;
|
//package com.ruoyi.common.utils;
|
||||||
|
//
|
||||||
import com.sun.xml.internal.messaging.saaj.packaging.mime.MessagingException;
|
//
|
||||||
import org.springframework.core.io.FileSystemResource;
|
//import jakarta.mail.internet.MimeMessage;
|
||||||
import org.springframework.mail.javamail.MimeMessageHelper;
|
//import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
//import org.springframework.core.io.FileSystemResource;
|
||||||
|
//import org.springframework.mail.javamail.JavaMailSender;
|
||||||
|
//import org.springframework.mail.javamail.MimeMessageHelper;
|
||||||
|
//import org.springframework.stereotype.Component;
|
||||||
//
|
//
|
||||||
//import java.io.File;
|
//import java.io.File;
|
||||||
//import java.util.List;
|
//import java.util.List;
|
||||||
//
|
//
|
||||||
|
//@Component
|
||||||
//public class SendMailUtils {
|
//public class SendMailUtils {
|
||||||
|
// private static final String SENDER = "xxx@163.com";
|
||||||
|
// @Autowired
|
||||||
|
// private JavaMailSender mailSender;
|
||||||
// /**
|
// /**
|
||||||
// * 发送带附件的邮件
|
// * 发送带附件的邮件
|
||||||
// *
|
// *
|
||||||
|
|||||||
Reference in New Issue
Block a user