文档介绍:作者:blackwhites
日期:2000-10-19 15:49:47
看看我从老外那骗到的
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
// (Java Enterprise Edition)
import .*;
import ..*;
import .*;
//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 mail
//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
//ount because it lets
//u send
//mails to the accounts like example try
//sending it to a "abc@"
// the mail account in
//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();
("","mail.");
//Here we specify the SMTP server through
//which the mail should be delivered
Session session = (props