The following example show you how to send email using Gmail SMTP via TLS connection. The username
and password
is used to authenticate you against the Gmail.
The configuration / properties used for connection to the Gmail SMTP is defined in the createConfiguration()
method. The properties include information such as the SMTP host address, port number, etc.
To send email using Gmail via SSL see the following code snippet How do I send email using Gmail via SSL?.
Let’s see the code snippet below:
package org.kodejava.mail;
import javax.mail.*;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import java.util.Date;
import java.util.Properties;
public class GmailSendEmailTLS {
private static final String USERNAME = "[email protected]";
private static final String PASSWORD = "password";
public static void main(String[] args) throws Exception {
// Email information such as from, to, subject and contents.
String mailFrom = "[email protected]";
String mailTo = "[email protected]";
String mailSubject = "TLS - Gmail Send Email Demo";
String mailText = "TLS - Gmail Send Email Demo";
GmailSendEmailTLS gmail = new GmailSendEmailTLS();
gmail.sendMail(mailFrom, mailTo, mailSubject, mailText);
}
private void sendMail(String mailFrom, String mailTo, String mailSubject,
String mailText) throws Exception {
Properties config = createConfiguration();
// Creates a mail session. We need to supply username and
// password for Gmail authentication.
Session session = Session.getInstance(config, new Authenticator() {
@Override
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(
GmailSendEmailTLS.USERNAME,
GmailSendEmailTLS.PASSWORD
);
}
});
// Creates email message
Message message = new MimeMessage(session);
message.setSentDate(new Date());
message.setFrom(new InternetAddress(mailFrom));
message.setRecipient(Message.RecipientType.TO,
new InternetAddress(mailTo));
message.setSubject(mailSubject);
message.setText(mailText);
// Send a message
Transport.send(message);
}
private Properties createConfiguration() {
return new Properties() {{
put("mail.smtp.auth", "true");
put("mail.smtp.host", "smtp.gmail.com");
put("mail.smtp.port", "587");
put("mail.smtp.starttls.enable", "true");
put("mail.smtp.ssl.protocols", "TLSv1.2");
}};
}
}
Maven Dependencies
<dependencies>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>javax.mail-api</artifactId>
<version>1.5.6</version>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4.7</version>
</dependency>
</dependencies>
Latest posts by Wayan (see all)
- How do I get number of each day for a certain month in Java? - September 8, 2024
- How do I get operating system process information using ProcessHandle? - July 22, 2024
- How do I sum a BigDecimal property of a list of objects using Java Stream API? - July 22, 2024
Worked at the the first time, thank you very much !
Thanks a lot.
Please help me. In runtime I receive this error message:
Great. thanks