Hi,
I am writing a JAVAMail client to send an email to
[email protected] from
[email protected] . Both are legal mail addresses.
This is how I set the server name
props.put("mail.smtp.host", "smarthost.yahoo.com");
My code compiles butI get an error while executing:
javax.mail.SendFailedException: Sending failed;
nested exception is: javax.mail.MessagingException: Could not connect to SMTP host: smarthost.yahoo.com, port: 25;
nested exception is:
java.net.ConnectException: Connection timed out: connect
at javax.mail.Transport.send0(Transport.java:219)
at javax.mail.Transport.send(Transport.java:81)
at Mail.postMail(Mail.java:41)
at Mail.main(Mail.java:49)
I have enabled the port 25 explicitly.
TIA
S Mithal