I am trying to use Bill the Lizard\'s code to send an email using Google Apps. I am getting this error:
Exception in thread \"main\" javax.mail.SendFailedEx
I found the problem. Previously i was using j2ee.jar to import javax.mail.
I removed j2ee.jar from the classpath and downloaded JavaMail 1.4.1 and put into my classpath two jars, smtp.jar and mailapi.jar. I use now smtps instead smtp
Transport transport = session.getTransport("smtps");
Now Bill the Lizard's code works.