9.27提交合并 #29

Merged
hejinbo merged 7 commits from hjb into dev 2023-09-27 07:40:50 +00:00
3 changed files with 45 additions and 5 deletions
Showing only changes of commit c60ad9f3fc - Show all commits
@@ -91,6 +91,31 @@ spring:
web:
resources:
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:
+7
View File
@@ -152,6 +152,13 @@
<version>1.9.1</version>
</dependency>
<!-- 发送邮件-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
<version>3.1.4</version>
</dependency>
</dependencies>
</project>
@@ -1,13 +1,21 @@
package com.ruoyi.common.utils;
import com.sun.xml.internal.messaging.saaj.packaging.mime.MessagingException;
import org.springframework.core.io.FileSystemResource;
import org.springframework.mail.javamail.MimeMessageHelper;
//package com.ruoyi.common.utils;
//
//
//import jakarta.mail.internet.MimeMessage;
//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.util.List;
//
//@Component
//public class SendMailUtils {
// private static final String SENDER = "xxx@163.com";
// @Autowired
// private JavaMailSender mailSender;
// /**
// * 发送带附件的邮件
// *