3

我的代码是:

// File Name SendEmail.java

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 = "toEmail@gmail.com";

      // Sender's email ID needs to be mentioned
      String from = "fromEmail@gmail.com";

      // 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();
      }
   }
}

昨晚我的程序运行正常;我可以从任何地址向任何其他地址发送电子邮件,但现在发生了此错误:

javax.mail.SendFailedException: Sending failed;
  nested exception is:
    class javax.mail.MessagingException: Could not connect to SMTP host: localhost, port: 25;
  nested exception is:
    java.net.ConnectException: Connection refused
    at javax.mail.Transport.send0(Transport.java:218)
    at javax.mail.Transport.send(Transport.java:80)
    at SendEmail.main(SendEmail.java:49)

第 49 行是:

Transport.send(message);

谁能帮我解决这个错误?

我的操作系统是:Linux,Fedora 16 -kernel: 3.3.7

4

3 回答 3

5

无法连接到 SMTP 主机:localhost,端口:25;

SMTP 必须未在您的系统上运行或为您作为用户禁用。请咨询您的系统管理员并为您启用它。

要检查 SMTP 是否在您的 Linux 系统上运行,请尝试以下命令:

  1. 要简单地验证 Sendmail 是否正在运行,请尝试:netstat -an | grep 25
  2. 使用 telnet 连接 smtp 服务器telnet <yourhost-or-ipnumber> 25
    的25 端口:Connecting To localhost...Could not open connection to the host, on port 25: Connect failed
    湾。如果您或您的 ip 被阻止,您会看到如下错误消息:
    220-localhost ESMTP Exim 4.63 #1 Fri, 01 Jun 2012 19:35:30 +0530
    220-我们不授权使用此系统传输未经请求的和/或批量电子邮件。
  3. echo -e "quit" | nc localhost 25
    localhost.localdomain [127.0.0.1] 25 (?) : 连接被拒绝
  4. 在 shell 提示符下发送邮件。
  5. 而且,可能更多……

您应该检查sendmail守护程序是否已启动并且始终可用。

如果您有权访问任何其他 SMTP 服务器,请尝试使用其 SMTP 主机名发送邮件,以检查您的代码片段是否正常工作。
例子 :String host = "smtp.gmail.com";

于 2012-06-01T15:36:02.373 回答
0

这是因为我的 SendMail 服务停止工作。

启用它:在 shell 中尝试这个命令(以 root 身份)。

service sendmail start
于 2012-06-01T16:06:48.427 回答
0

你在正确的方式..只需更改属性设置和会话语句.我的 java 邮件工作正常...

final String username = "abc@gmail.com";
            final String password = "****";

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




            Session session = Session.getInstance(props, new javax.mail.Authenticator() {
                protected PasswordAuthentication getPasswordAuthentication() {
                    return new PasswordAuthentication(username, password);
                }
            });
于 2014-12-03T11:22:56.323 回答