This commit is contained in:
Looly 2021-04-23 13:44:31 +08:00
parent 6f4d1f6431
commit 2cedffa492
2 changed files with 12 additions and 11 deletions

View File

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

View File

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