Thread: Sending Email
View Single Post
  #4 (permalink)  
Old Jul 29th, 2006, 03:16
jetbrains jetbrains is offline
New Member
Join Date: Jul 2006
Location: hk
Age: 28
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Sending Email

"is their a built in function in jsp?"
There isn't a built in function in jsp,but you can sue javamil .
Give you some sample code
Code: Select all
Properties props = System.getProperties();
props.put("mail.smtp.host", host);
    props.put("mail.smtp.auth","true");
    // Setup mail server
    Authenticator auth = new MyAuthenticator();
Session session = Session.getDefaultInstance(props, auth);
Reply With Quote