代码搜索:JavaMail

找到约 913 项符合「JavaMail」的源代码

代码结果 913
www.eeworm.com/read/151482/5681518

java javamailsenderimpl.java

/* * Copyright 2002-2005 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.
www.eeworm.com/read/118804/6093757

java remotedeliverysocketfactory.java

/*********************************************************************** * Copyright (c) 2000-2004 The Apache Software Foundation. * * All rights reserved.
www.eeworm.com/read/113186/6133455

java javamailsender.java

/* * Copyright 2002-2004 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.
www.eeworm.com/read/108165/6184662

java javamailsender.java

/* * Copyright 2002-2004 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.
www.eeworm.com/read/165261/5483905

java javamailsender.java

/* * Copyright 2002-2004 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.
www.eeworm.com/read/377944/9256645

txt 回复谁有用java mail 收 html 信件的程序呀?.txt

作者:easyinfonet email: easyinfonet@sina.com 日期:2001-6-5 16:01:04 在JSP中使用JavaMail(上) 内容: 什么是JavaMail 第一部分:HTML表格 划分组件 用来发送email的HTML源代码 你希望在jsp中建立一个邮件发送收取工具吗?下面将介绍的就是在j
www.eeworm.com/read/377944/9256762

txt jsp insider 5 在jsp中使用javamail---2.txt

作者:caoli email: caoli@dicp.ac.cn 日期:2001-7-4 17:53:06 第一部分, HTML表单 分治 JSP的最好的功能之一就是可以把项目分解成组件。这个邮件工具也具有上述特点,我们的组件包括: 一个HTML表单,用来把email信息post给JSP。 一个用来处理和发送该mail的JSP页面。 第一步,是创建一个使用HTML的可以
www.eeworm.com/read/377944/9256804

txt 发邮件时终于可以通过sina的smtp验证了(附代码).txt

作者:halfhour 日期:2001-5-21 11:10:33 import javax.mail.*; import javax.mail.internet.*; import java.util.*; public class sendMail { public static void main(String args[]) throws Exception {
www.eeworm.com/read/377944/9257116

txt jsp insider 5 在jsp中使用javamail---3.txt

作者:caoli email: caoli@dicp.ac.cn 日期:2001-7-4 17:54:02 第二部分,关于<mark>JavaMail</mark> 使用文档 下载<mark>JavaMail</mark> API 之后,其中所包含的文档非常有用,文档存放在<mark>JavaMail</mark>所在目录的子目录/docs/javadocs/中。下面将介绍邮件工具中所需用到的一些组件。请参阅<mark>JavaMail</mark>文档,以便了解更多相关信息。 ...
www.eeworm.com/read/377944/9257135

txt jsp insider 5 在jsp中使用javamail---4.txt

作者:caoli email: caoli@dicp.ac.cn 日期:2001-7-4 17:57:26 第三部分:在JSP中使用JavaMail 构造JSP 现在,将介绍如何把这些对象放到一起,需要用页面指示语把这些对象导入,这点是很关键的。注意:也要用到java.util.date,因为email的时戳要用到java.util.date。