Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Re: send SMTP mail using JavaMail with gmail account

9,983 views
Skip to first unread message

GaryM

unread,
Feb 21, 2005, 12:49:32 PM2/21/05
to
jrefa...@hotmail.com wrote in news:1109005482.258452.142720
@o13g2000cwo.googlegroups.com:

> // props.put("mail.smtp.auth", "true");

Uncomment this line.

jrefa...@hotmail.com

unread,
Feb 21, 2005, 12:04:42 PM2/21/05
to
I want the Java application to send email using google gmail account.

The following is the output, and it cannot display "sendMail() 3..."
in the following sendMail() method. The program just hangs after
printing "sendMail() 2...", and there is no errors.

output
===============
sendMail()...
sendMail() 2...

Basically it get stucks on line
transport.connect(smtpHost, 465, "gmail account", "gmail password");

----------------------------------------------------------
public void sendMail() throws MessagingException
{
System.out.println("sendMail()...");
Properties props = new Properties();
props.put("mail.smtp.host", "smtp.gmail.com");
props.put("mail.smtp.port", "465");

// props.put("mail.smtp.auth", "true");

Session session = Session.getDefaultInstance(props, null);
session.setDebug(false);
MimeMessage message = new MimeMessage(session);
message.setFrom(from);
Iterator itrto = toRecipients.iterator();
while(itrto.hasNext())
{
Object obj = (Address)itrto.next();
if(obj instanceof Address){
message.addRecipient(Message.RecipientType.TO, (Address)obj);
}
}
System.out.println("sendMail() 2...");

message.setSubject(subject);
message.setContent(msgText, "text/plain");

Transport transport = session.getTransport("smtp");

//***** GET STUCK HERE!!! ******
transport.connect(smtpHost, 465, "gmail account", "gmail password");

System.out.println("sendMail() 3...");

Transport.send(message);

System.out.println("sendMail() 4...");

}
--------------------------------------------------------

any ideas? please advise.
thanks!!

jrefa...@hotmail.com

unread,
Feb 21, 2005, 5:19:08 PM2/21/05
to

I uncomment line props.put("mail.smtp.auth", "true");
but it still cannot display sendMail() 3...:

sendMail()...
sendMail() 2...

But it has exception this time:

javax.mail.MessagingException: Could not connect to SMTP host:
smtp.gmail.com, port: 465;
nested exception is:
java.net.ConnectException: Connection timed out: connect
at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:867)
at
com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:156)
at javax.mail.Service.connect(Service.java:234)
at SMTPHandler.sendMail(SMTPHandler.java:145)
at SMTPHandlerTest.main(SMTPHandlerTest.java:33)
Exception in thread "main"

any ideas? thanks!!

GaryM

unread,
Feb 21, 2005, 6:18:28 PM2/21/05
to
jrefa...@hotmail.com wrote in
news:1109024348....@g14g2000cwa.googlegroups.com:


>
> any ideas? thanks!!
>

I have no time to try this myself, but you can give it a go and post
back:

props.put("mail.smtp.starttls.enable","true");

GaryM

unread,
Feb 21, 2005, 7:28:16 PM2/21/05
to
GaryM <gmaddr...@yahoo.com> wrote in news:Xns9604BA3A9C8DR3...@192.168.1.81:

>
> I have no time to try this myself, but you can give it a go and post
> back:

OK Here is working code. I followed the instructions here, which, though it
does not even mention SMTP, still works with SMTP:

http://www.javaworld.com/javatips/jw-javatip115.html

Look for the xxxxx occurances and substiture with your credentials :

/*
* Created on Feb 21, 2005
*
*/

import java.security.Security;
import java.util.Properties;

import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;

public class GoogleTest {

private static final String SMTP_HOST_NAME = "smtp.gmail.com";
private static final String SMTP_PORT = "465";
private static final String emailMsgTxt = "Test Message Contents";
private static final String emailSubjectTxt = "A test from gmail";
private static final String emailFromAddress = "xxxx...@gmail.com";
private static final String SSL_FACTORY = "javax.net.ssl.SSLSocketFactory";
private static final String[] sendTo = { "xxx...@xxxx.xxx"};


public static void main(String args[]) throws Exception {

Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());

new GoogleTest().sendSSLMessage(sendTo, emailSubjectTxt,
emailMsgTxt, emailFromAddress);
System.out.println("Sucessfully Sent mail to All Users");
}

public void sendSSLMessage(String recipients[], String subject,
String message, String from) throws MessagingException {
boolean debug = true;

Properties props = new Properties();

props.put("mail.smtp.host", SMTP_HOST_NAME);


props.put("mail.smtp.auth", "true");

props.put("mail.debug", "true");
props.put("mail.smtp.port", SMTP_PORT);
props.put("mail.smtp.socketFactory.port", SMTP_PORT);
props.put("mail.smtp.socketFactory.class", SSL_FACTORY);
props.put("mail.smtp.socketFactory.fallback", "false");

Session session = Session.getDefaultInstance(props,
new javax.mail.Authenticator() {

protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication("xxxxxx", "xxxxxx");
}
});

session.setDebug(debug);

Message msg = new MimeMessage(session);
InternetAddress addressFrom = new InternetAddress(from);
msg.setFrom(addressFrom);

InternetAddress[] addressTo = new InternetAddress[recipients.length];
for (int i = 0; i < recipients.length; i++) {
addressTo[i] = new InternetAddress(recipients[i]);
}
msg.setRecipients(Message.RecipientType.TO, addressTo);

// Setting the Subject and Content Type
msg.setSubject(subject);
msg.setContent(message, "text/plain");
Transport.send(msg);
}
}

praveen...@gmail.com

unread,
Feb 23, 2005, 2:21:44 PM2/23/05
to
hello

lalitha.m...@gmail.com

unread,
Jul 9, 2019, 8:52:18 AM7/9/19
to

lalitha.m...@gmail.com

unread,
Jul 9, 2019, 8:52:48 AM7/9/19
to
On
0 new messages