Wrox Home  
Search P2P Archive for: Go

  Return to Index  

servlets thread: About sending mail without mail server...


Message #1 by "Vianneth Payan" <vpayan@p...> on Thu, 21 Feb 2002 20:05:21
have you looked at the javamail api

you can download it separate from j2ee

the package is called javax.mail

--- Vianneth Payan <vpayan@p...> wrote:
> Do you know some possibilities in Java to send mail
> without SMTP server 
> like ASP do it?
> 
> the code ASP below:
> 
> Set objMail = Server.CreateObject("CDONTS.NewMail")
> objMail.From = request.QueryString("from")
> objMail.To = request.QueryString("to")
> objMail.Subject = request.QueryString("subject")
> objMail.Body = body
> objMail.Send
> Set objMail = Nothing
> 
> *******
> 
> thatīs for IIS 5.0, How can I do it in Java? without
> mail server, only 
> SMTP service installed??
> 
> thank you!
$subst('Email.Unsub').


__________________________________________________
Do You Yahoo!?
Yahoo! Sports - Coverage of the 2002 Olympic Games
http://sports.yahoo.com

  Return to Index