java - java中从 native 邮件服务器发送邮件到gmail或其他邮件服务器

标签 java email gmail jakarta-mail mercury-mta

我有以下代码

import java.util.*;
import javax.mail.*;
import javax.mail.internet.*;
import javax.activation.*;

public class SendEmail
{
   public static void main(String [] args)
   {

      // Recipient's email ID needs to be mentioned.
      String to = "*****@gmail.com";

      // Sender's email ID needs to be mentioned
      String from = "test1@localhost";

      // Assuming you are sending email from localhost
      String host = "localhost";

      // Get system properties
      Properties properties = System.getProperties();

      // Setup mail server
      properties.setProperty("mail.smtp.host", host);

      // Get the default Session object.
      Session session = Session.getDefaultInstance(properties);

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

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

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

         // Set Subject: header field
         message.setSubject("This is the Subject Line!");

         // Now set the actual message
         message.setText("This is actual message");

         // Send message
         Transport.send(message);
         System.out.println("Sent message successfully....");
      }catch (MessagingException mex) {
         mex.printStackTrace();
      }
   }
}

Mercury 服务器日志

T 20140406 114001 534133f8 Connection from 127.0.0.1
T 20140406 114001 534133f8 EHLO RAVI-PC
T 20140406 114001 534133f8 MAIL FROM:<test1@localhost>
T 20140406 114001 534133f8 RCPT TO:<mygmailaccount@gmail.com>
T 20140406 114001 534133f8 DATA
T 20140406 114001 534133f8 DATA - 9 lines, 274 bytes.
T 20140406 114001 534133f8 QUIT
T 20140406 114001 534133f8 Connection closed with 127.0.0.1, 0 sec. elapsed.

服务器调试输出

DEBUG: JavaMail version 1.5.0
DEBUG: successfully loaded resource: /META-INF/javamail.default.providers
DEBUG: Tables of loaded providers
DEBUG: Providers Listed By Class Name: {com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle]}
DEBUG: Providers Listed By Protocol: {imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle]}
DEBUG: successfully loaded resource: /META-INF/javamail.default.address.map
DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle]
DEBUG SMTP: useEhlo true, useAuth false
DEBUG SMTP: trying to connect to host "localhost", port 25, isSSL false
220 localhost ESMTP server ready.
DEBUG SMTP: connected to host "localhost", port: 25

EHLO RAVI-PC
250-localhost Hello RAVI-PC; ESMTPs are:
250-TIME
250-SIZE 0
250 HELP
DEBUG SMTP: Found extension "TIME", arg ""
DEBUG SMTP: Found extension "SIZE", arg "0"
DEBUG SMTP: Found extension "HELP", arg ""
DEBUG SMTP: use8bit false
MAIL FROM:<test1@localhost>
250 Sender OK - send RCPTs.
RCPT TO:<mygmailaccount@gmail.com>
250 Recipient OK - send RCPT or DATA.
DEBUG SMTP: Verified Addresses
DEBUG SMTP:   mygmailaccount@gmail.com
DATA
354 OK, send data, end with CRLF.CRLF
From: test1@localhost
To: mygamilaccount@gmail.com
Message-ID: <22999979.0.1396766922465.JavaMail.RAVI@RAVI-PC>
Subject: This is the Subject Line!
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

This is actual message
.
250 Data received OK.
QUIT
221 localhost Service closing channel.
Sent message successfully....

我已经在本地计算机上设置了 Mercury Mail Server,现在我正在尝试从本地计算机邮件服务器向 gmail 用户发送邮件。我得到了 Sent message success.... 输出。当我执行上面的代码时。但是,我的 Gmail 帐户没有收到任何邮件。

最佳答案

jWeaver,我遇到了类似的问题,并以一种不太清楚解释原因的方式解决了,但可以工作。

将您的属性模式更改为与此一致:

    Properties props = System.getProperties();
    props.put("mail.smtp.host", host);
    props.put("mail.smtp.user", from);
    props.put("mail.debug", "true");

关于java - java中从 native 邮件服务器发送邮件到gmail或其他邮件服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22890719/

相关文章:

.net - 使用SmtpClient发送邮件的最佳方式?

java - 使用 Java 在 Mac 上以编程方式发送电子邮件(通过 Mac 邮件客户端)

delphi - Indy 10 - 从 GMail 帐户发送消息时 IdSMTP.Send() 挂起

java - Gmail 应用程序如何获取有关新电子邮件的信息?

java - 日历不弹出 PrimeFaces

java - 简单的 Java 用户界面

php - Laravel 邮件与 g 套件和 XOAUTH2

c# - 从CSharp/.net使用gmail SMTP发送邮件

Java 如何比较 2 个 ArrayList 或迭代器的结果

java - 执行 HTTP GET 请求的 Response 实体的 mockito 单元测试用例