yangys
2025-09-22 12313d5b8a2b6eaa2c7562291cf08f23644ef1d7
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"});
    }
 
}