This commit is contained in:
Looly 2025-02-21 17:52:32 +08:00
parent 05f16f051e
commit 4ef8814c14
7 changed files with 11 additions and 9 deletions

View File

@ -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);
}

View File

@ -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);
}

View File

@ -13,7 +13,7 @@ from = 小磊<hutool@yeah.net>
# 用户名注意如果使用foxmail邮箱此处user为qq号
user = hutool@yeah.net
# 密码
pass = q1w2e3
pass = 123456
# 使用 STARTTLS安全连接
starttlsEnable = true
# 是否开启SSL

View File

@ -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

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -11,7 +11,7 @@
"charset": "UTF-8",
"debug": false,
"auth": true,
"pass": "q1w2e3",
"pass": "123456",
"socketFactoryFallback": false,
"socketFactoryPort": 465,
"startttlsEnable": false,