jodd发送邮件完整版

 

	public static void test() {

		Email e = new Email();

		e.setFrom("[email protected]");
		e.setTo("[email protected]");
		e.setSubject("jodd test");
		e.addHtml("发送电子邮件");
		e.attachFile("D:/java/java环境变量.txt");

		SimpleAuthenticator sa = new SimpleAuthenticator("账号","密码");
		SmtpServer smtpServer = new SmtpServer("smtp.sohu.com", sa);
		SendMailSession session = smtpServer.createSession();
		session.open();
		session.sendMail(e);
		session.close();
	}

 

你可能感兴趣的:(jodd,email,电子邮件)