I am using java mail to send emails over smtp. The smtp settings given below:
Properties props = new Properties(); Object put = props.put(\"m
This JavaMail FAQ entry should help.
Try using MailSSLSocketFactory like this:
MailSSLSocketFactory sf = new MailSSLSocketFactory(); sf.setTrustAllHosts(true); props.put("mail.smtp.ssl.socketFactory", sf);