mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
fix test
This commit is contained in:
parent
6f4d1f6431
commit
2cedffa492
@ -27,12 +27,12 @@
|
||||
<artifactId>hutool-core</artifactId>
|
||||
<version>${project.parent.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.bouncycastle</groupId>
|
||||
<artifactId>bcprov-jdk15to18</artifactId>
|
||||
<version>${bouncycastle.version}</version>
|
||||
<scope>compile</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.bouncycastle</groupId>
|
||||
<artifactId>bcprov-jdk15to18</artifactId>
|
||||
<version>${bouncycastle.version}</version>
|
||||
<scope>compile</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
|
@ -47,10 +47,11 @@ public class MailAccountTest {
|
||||
mailAccount.setAuth(true);
|
||||
mailAccount.setSslEnable(true);
|
||||
|
||||
Mail mail = Mail.create(mailAccount).setTos("xx@xx.com");
|
||||
mail.setTitle("邮箱验证");
|
||||
mail.setContent("您的验证码是:<h3>2333</h3>");
|
||||
mail.setHtml(true);
|
||||
Mail mail = Mail.create(mailAccount)
|
||||
.setTos("xx@xx.com")
|
||||
.setTitle("邮箱验证")
|
||||
.setContent("您的验证码是:<h3>2333</h3>")
|
||||
.setHtml(true);
|
||||
|
||||
mail.send();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user