problem connecting to Gmail server thro' SmtpSSL
I m facing problem sending mail thru my Gmail account, actually I m facing problem connecting to Gmail server,I m using the following code for connection to Gmail server..
import com.jscape.inet.smtpssl.*;
import com.jscape.inet.email.*;
SmtpSsl smtp = null;
smtp = new SmtpSsl("smtp.gmail.com",465);
smtp.connect();
smtp.login(username,password);
EmailMessage message = new EmailMessage();
message.setTo(to);
message.setFrom(username);
message.setSubject("Sending email via Gmail SMTP");
message.setBody("This is the body of the message");
smtp.send(message);
smtp.disconnect();

