-->

错误在Java发送邮件(Error in Sending mail by Java)

2019-09-17 16:31发布

我的代码是:

// 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

Answer 1:

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

SMTP必须在系统上不运行或禁用对你的用户。 请与您的系统管理员,并得到它使你。

要检查是否SMTP是工作在Linux系统上,请尝试以下命令:

  1. 为了简单地验证Sendmail的运行过程中,尝试: netstat -an | grep 25 netstat -an | grep 25
  2. 使用telnet连接到SMTP服务器的端口25: telnet <yourhost-or-ipnumber> 25
    一种。 连接到本地主机...无法打开连接到主机,端口25上连接:连接失败
    湾 如果您或您的IP被封锁,你会看到错误信息是这样的:
    220-本地主机ESMTP进出口4.63#1至周五,2012年6月1日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";



Answer 2:

那是因为我的sendmail服务停止工作。

启用:在壳尝试此命令(作为root)。

service sendmail start


Answer 3:

ü右way..just更改属性设置和会话句子。我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);
                }
            });


文章来源: Error in Sending mail by Java