1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.hxh.spring.test;
|
| import com.yeshi.buwan.util.email.MailSenderUtil;
|
| public class EmailTest {
|
| @org.junit.Test
| public void test() {
| for (int i = 0; i < 3; i++) {
| boolean isS = MailSenderUtil.sendEmail("2780501319@qq.com", "ysyz17784739772@126.com", "weikou2014",
| "布丸社区注册验证码:" + 123, "布丸社区注册验证码:" + 123);
| }
| }
|
| }
|
|