servlets thread: Java Mail problem
Hai Nanda
Just try this code..
Properties props = new Properties();
props.put("mail.smtp.host", "mail.espacetech.com");
Session msession = Session.getDefaultInstance(props, null);
Message msg = new MimeMessage(msession);
InternetAddress toAddrs = new InternetAddress(toadd);
msg.addRecipient(Message.RecipientType.TO, toAddrs);
msg.setSubject(subject);
msg.setFrom(new InternetAddress(fromadd));
msg.setContent(cont);
Transport.send(msg);
Cheers
nandhakumar
eSpace
nandha@e...
chennai.
|





