JavaMail API - Gmail SMTP 服务器



在之前的所有章节中,我们都使用 JangoSMPT 服务器发送邮件。在本节中,我们将学习 Gmail 提供的 SMTP 服务器。Gmail(以及其他一些服务)免费提供其公共 SMTP 服务器的使用。

可以在 此处 找到 Gmail SMTP 服务器的详细信息。如您所见,我们可以使用 TLS 或 SSL 连接通过 Gmail SMTP 服务器发送邮件。

使用 Gmail SMTP 服务器发送邮件的过程与章节 发送邮件 中解释的类似,只是我们需要更改主机服务器。作为先决条件,发件人邮箱地址应为有效的 Gmail 帐户。让我们尝试一个示例。

创建 Java 类

创建一个 Java 文件 SendEmailUsingGMailSMTP,其内容如下所示

package com.tutorialspoint;

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 SendEmailUsingGMailSMTP {
   public static void main(String[] args) {
      // Recipient's email ID needs to be mentioned.
      String to = "[email protected]";//change accordingly

      // Sender's email ID needs to be mentioned
      String from = "[email protected]";//change accordingly
      final String username = "abc";//change accordingly
      final String password = "*****";//change accordingly

      // Assuming you are sending email through relay.jangosmtp.net
      String host = "smtp.gmail.com";

      Properties props = new Properties();
      props.put("mail.smtp.auth", "true");
      props.put("mail.smtp.starttls.enable", "true");
      props.put("mail.smtp.host", host);
      props.put("mail.smtp.port", "587");

      // Get the Session object.
      Session session = Session.getInstance(props,
      new javax.mail.Authenticator() {
         protected PasswordAuthentication getPasswordAuthentication() {
            return new PasswordAuthentication(username, password);
         }
      });

      try {
         // Create a default MimeMessage object.
         Message message = new MimeMessage(session);

         // Set From: header field of the header.
         message.setFrom(new InternetAddress(from));

         // Set To: header field of the header.
         message.setRecipients(Message.RecipientType.TO,
         InternetAddress.parse(to));

         // Set Subject: header field
         message.setSubject("Testing Subject");

         // Now set the actual message
         message.setText("Hello, this is sample for to check send "
            + "email using JavaMailAPI ");

         // Send message
         Transport.send(message);

         System.out.println("Sent message successfully....");

      } catch (MessagingException e) {
            throw new RuntimeException(e);
      }
   }
}

此处主机设置为 smtp.gmail.com,端口设置为 587。这里我们启用了 TLS 连接。

编译和运行

现在我们的类已准备就绪,让我们编译上述类。我已将类 SendEmailUsingGMailSMTP.java 保存到目录:/home/manisha/JavaMailAPIExercise。我们需要将 javax.mail.jaractivation.jar 放在类路径中。执行以下命令从命令提示符编译类(这两个 jar 文件都放置在 /home/manisha/ 目录中)

javac -cp /home/manisha/activation.jar:/home/manisha/javax.mail.jar: SendEmailUsingGMailSMTP.java

现在类已编译,执行以下命令运行

java -cp /home/manisha/activation.jar:/home/manisha/javax.mail.jar: SendEmailUsingGMailSMTP

验证输出

您应该在命令控制台上看到以下消息

Sent message successfully....
广告