mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-04 23:39:32 +08:00
fix test
This commit is contained in:
parent
05f16f051e
commit
4ef8814c14
@ -1,7 +1,6 @@
|
||||
package cn.hutool.extra.mail;
|
||||
|
||||
import cn.hutool.core.io.FileUtil;
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
@ -10,6 +9,8 @@ import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.Properties;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
|
||||
/**
|
||||
* 邮件发送测试
|
||||
* @author looly
|
||||
@ -42,7 +43,7 @@ public class JakartaMailTest {
|
||||
@Disabled
|
||||
public void sendHtmlWithImageTest() {
|
||||
Map<String, InputStream> map = new HashMap<>();
|
||||
InputStream in = getClass().getClassLoader().getResourceAsStream("image/Dromara.png");
|
||||
InputStream in = getClass().getClassLoader().getResourceAsStream("image/hutool.png");
|
||||
map.put("<image-1>", in);
|
||||
JakartaMailUtil.sendHtml("hutool@foxmail.com;li7hai26@outlook.com", "测试", "<h1>邮件来自Hutool测试</h1><img src=\"cid:image-1\" />", map);
|
||||
}
|
||||
@ -62,7 +63,7 @@ public class JakartaMailTest {
|
||||
account.setSslEnable(true);
|
||||
account.setFrom("hutool@yeah.net");
|
||||
account.setUser("hutool");
|
||||
account.setPass("q1w2e3");
|
||||
account.setPass("123456");
|
||||
JakartaMailUtil.send(account, "hutool@foxmail.com", "测试", "<h1>邮件来自Hutool测试</h1>", true);
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
package cn.hutool.extra.mail;
|
||||
|
||||
import cn.hutool.core.io.FileUtil;
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
@ -10,6 +9,8 @@ import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.Properties;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
|
||||
/**
|
||||
* 邮件发送测试
|
||||
* @author looly
|
||||
@ -42,7 +43,7 @@ public class MailTest {
|
||||
@Disabled
|
||||
public void sendHtmlWithImageTest() {
|
||||
Map<String, InputStream> map = new HashMap<>();
|
||||
InputStream in = getClass().getClassLoader().getResourceAsStream("image/Dromara.png");
|
||||
InputStream in = getClass().getClassLoader().getResourceAsStream("image/hutool.png");
|
||||
map.put("<image-1>", in);
|
||||
MailUtil.sendHtml("hutool@foxmail.com;li7hai26@outlook.com", "测试", "<h1>邮件来自Hutool测试</h1><img src=\"cid:image-1\" />", map);
|
||||
}
|
||||
@ -62,7 +63,7 @@ public class MailTest {
|
||||
account.setSslEnable(true);
|
||||
account.setFrom("hutool@yeah.net");
|
||||
account.setUser("hutool");
|
||||
account.setPass("q1w2e3");
|
||||
account.setPass("123456");
|
||||
MailUtil.send(account, "hutool@foxmail.com", "测试", "<h1>邮件来自Hutool测试</h1>", true);
|
||||
}
|
||||
|
||||
|
@ -13,7 +13,7 @@ from = 小磊<hutool@yeah.net>
|
||||
# 用户名(注意:如果使用foxmail邮箱,此处user为qq号)
|
||||
user = hutool@yeah.net
|
||||
# 密码
|
||||
pass = q1w2e3
|
||||
pass = 123456
|
||||
# 使用 STARTTLS安全连接
|
||||
starttlsEnable = true
|
||||
# 是否开启SSL
|
||||
|
@ -13,7 +13,7 @@ from = 小磊<hutool@yeah.net>
|
||||
# 用户名
|
||||
user = hutool
|
||||
# 密码
|
||||
pass = q1w2e3
|
||||
pass = 123456
|
||||
|
||||
# 是否打开调试模式,调试模式会显示与邮件服务器通信过程,默认不开启
|
||||
debug = true
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 29 KiB |
BIN
hutool-extra/src/test/resources/image/hutool.png
Normal file
BIN
hutool-extra/src/test/resources/image/hutool.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 25 KiB |
@ -11,7 +11,7 @@
|
||||
"charset": "UTF-8",
|
||||
"debug": false,
|
||||
"auth": true,
|
||||
"pass": "q1w2e3",
|
||||
"pass": "123456",
|
||||
"socketFactoryFallback": false,
|
||||
"socketFactoryPort": 465,
|
||||
"startttlsEnable": false,
|
||||
|
Loading…
Reference in New Issue
Block a user