当前位置: 首页 > 图文教程 > 网络编程 > JSP > JSP发送邮件实例

JSP
建立JSP操作以提高数据库访问的效率
实战 J2EE 开发购物网站 - 创建数据库
J2EE 开发购物网站 经验篇 - 建表
实战 J2EE 开发购物网站 二
Resin在Windows系统下的安装
JRun3.0配合IIS的安装全过程
JSP开发前菜鸟设置篇
关于IIS连接数和在线人数的详细说明
Windows下JSP开发环境的配置
win2000下jsp平台搭建的简单过程
IIS6 和Tomcat5 的整合
面向对象编程,我的思想(5)
Java编程中更新XML文档的常用方法
用Java实现HTTP文件队列下载
jsp读取大对象CLOB并生成xml文件示例
jsp计数器制作手册
提升JSP应用程序的七大绝招
Java数据对象JDO 2.0查询语言的特点
在jsp程序中使用com组件
随机生成文件名的函数

JSP发送邮件实例


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-13   浏览: 53 ::
收藏到网摘: n/a

vishal_donth gave this response on 10/18/2000:
//these are the pakages to be imported from
// Java Mail
//The Java Mail PAckage either be dowloaded
//seperately
//or else is Available in the J2sdkee1.2
// (Java Enterprise Edition)
import javax.mail.*;
import javax.mail.internet.*;
import java.util.*;

//This function can be used to send the mail
// with the parameters given to it
//U have to specify the smtp server through
//which u have to send the mail
//since i was trying with a homenetmail
//account i directly sent the mail its server
//For sending this mail u need a mail server
//which lets u to relay the messages
//Try this thing for sending to a
//www.homenetmail.com account because it lets
//u send
//mails to the accounts like example try
//sending it to a "[email protected]"
//account.Create the mail account in homenet
//mail first. If u get any other server which
//supports relaying u can try this on that
//also.
//Use this function in ur Servlet to send
//mail by calling the function with the
//parameters
public void sendMail(String toAddr, String subject, String body, String fromAddr)throws RemoteException{
try{
Properties props = new Properties();
props.put("mail.smtp.host","mail.homenetmail.com");
//Here we specify the SMTP server through
//which the mail should be delivered
Session session = Session.getDefaultInstance(props, null);
Message msg = new MimeMessage(session);
msg.setFrom(new InternetAddress(fromAddr));
//Specify the From Address
InternetAddress[] tos =InternetAddress.parse(toAddr);
//Specify the To Address
msg.setRecipients(Message.RecipientType.TO,tos);
msg.setSubject(subject);
//Specify the Subject
msg.setText(body);
//Specify the Body
Transport.send(msg);
System.out.println("Message is Sent");
}
catch(Exception e){
System.out.println(e);
}
}
// U have to run this function on a computer
//which is directly connected
// to internet but not through a
//proxy......or else use a proxy which
//supports SMTP