I am sending mail from my Java app to Gmail Account. I had used the Java Mail API and it worked fine. But is it possible to send an e-mail without using the mail API in java?
I mean just by using sockets:
public class Main {
public static void main(String[] args) throws Exception {
String host = "smtp.gmail.com";
int port = 465;
String from = "sh2rpzain@gmail.com";
String toAddr = "sharpzian@gmail.com";
Socket servSocket = new Socket(host, port);
DataOutputStream os = new DataOutputStream(servSocket.getOutputStream());
DataInputStream is = new DataInputStream(servSocket.getInputStream());
if (servSocket != null && os != null && is != null) {
os.writeBytes("HELO\r\n");
os.writeBytes("MAIL From:" + from + " \r\n");
os.writeBytes("RCPT To:" + toAddr + "\r\n");
os.writeBytes("DATA\r\n");
os.writeBytes("X-Mailer: Java\r\n");
os.writeBytes("DATE: " + DateFormat.getDateInstance(DateFormat.FULL,
Locale.US).format(new Date()) + "\r\n");
os.writeBytes("From:" + from + "\r\n");
os.writeBytes("To:" + toAddr + "\r\n");
}
os.writeBytes("Subject:\r\n");
os.writeBytes("body\r\n");
os.writeBytes("\r\n.\r\n");
os.writeBytes("QUIT\r\n");
String responseline;
while ((responseline = is.readUTF()) != null) {
if (responseline.indexOf("Ok") != -1)
break;
}
}
}
But it is not working, it doesn't send out the mail. Can anyone tell me what could be the problem?
If you have a dynamic IP you are probably not able to send messages to Googlemail.
GMail doesn't allow non-secure mail transfer. You need to make an SSL/TLS connection in your implementation.
In order to use a secure connection, use SSLSocket instead of Socket, like this:
By default, Google only allows encrypted connections. That's actually a good thing, in my opinion.
But if you must send your mails in plaintext, you can enable it on your Account Page under settings.
Here is a good example:
-> http://www.java2s.com/Code/Java/Network-Protocol/SendingMailUsingSockets.htm