首页>代码>Spring的邮件发送工具,支持群发和抄送>/src/test/java/cn/ifxcode/utils/test/EmailTest.java
package cn.ifxcode.utils.test;

import java.io.File;

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

import cn.ifxcode.utils.email.service.EmailService;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration({"classpath:spring.xml"})
public class EmailTest {

	@Autowired
	private EmailService emailService;
	
	private String subject = null;
	private String address[] = null;
	private String ccAddress[] = null;
	private String msg = null;
	private File fileList[] = null;
	
	@Before
	public void init() {
		subject = "this is come from xxx's test mail";
		address = new String[]{"xxxxx@qq.com"};
		//ccAddress = new String[]{"xxxxx@qq.com"};
		msg = "this is test content";
		//fileList = ;
	}
	
	@Test
	public void testSendMailAndFile() {
		emailService.sendMailAndFile(subject, address, ccAddress, msg, fileList);
	}
	
	@Test
	public void testSendMail() {
		emailService.sendMail(subject, address, ccAddress, msg);
	}

}
最近下载更多
langya  LV9 2022年3月2日
luesjim  LV11 2021年6月18日
wangyang123  LV9 2021年6月8日
xuexizhuanyong23  LV16 2021年1月22日
stellafull  LV2 2021年1月17日
robin8899  LV3 2020年11月27日
jin666  LV3 2020年3月10日
周大福  LV12 2020年2月27日
haohao先森  LV5 2020年2月10日
8战魂5无双8  LV43 2020年1月6日
最近浏览更多
2636804923  LV6 6月16日
lzx602  LV3 4月15日
小白jmhuang  LV12 2023年5月30日
1358849392  LV21 2022年12月27日
qq1176648922  LV6 2022年10月24日
2363659936  LV2 2022年6月21日
1623096142  LV6 2022年6月20日
WeiZZZ  LV1 2022年3月28日
npc也有忧伤  LV3 2022年3月20日
langya  LV9 2022年3月2日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友