now i did this.
---
public void sendingnow2() throws UnsupportedEncodingException{
String host = "smtp.live.com";
String port = "587";
Properties props = new Properties();
props.put("mail.smtp.host", host);
props.put("mail.smtp.port", port);
props.put("mail.smtp.auth", "false");
---
and this exception:
excp 2
530 5.7.0 Must issue a STARTTLS command first
How can i set the "TLS" ?.. or what is it?
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.