1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package org.springblade.mdm.commons.service;
|
| import org.junit.jupiter.api.Test;
|
| public class InternalEmailServiceTest {
|
| @Test
| public void testSend(){
| InternalEmailService service = new InternalEmailService();
|
| service.send("from","to","cc","bcc","邮件提醒","您有那条任务要处理",new String[]{"Path1"});
| }
|
| }
|
|