繁体   English   中英

javax.mail.MessagingException:无法连接到 SMTP 主机:smtp.gmail.com,端口:587

[英]javax.mail.MessagingException: Could not connect to SMTP host: smtp.gmail.com, port: 587

我有一个发送电子邮件的 Java 应用程序。 但是当我运行代码时,我得到以下异常。我还检查了身份验证设置,并且 485 端口没有,但仍然存在错误。

DEBUG: setDebug: JavaMail version 1.4.4
DEBUG: getProvider() returning      
javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems,   
Inc]
DEBUG SMTP: useEhlo true, useAuth true
DEBUG SMTP: useEhlo true, useAuth true
DEBUG SMTP: trying to connect to host "smtp.gmail.com", port 587, isSSL false
javax.mail.MessagingException: Could not connect to SMTP host: smtp.gmail.com, port: 
587;
nested exception is:
java.net.ConnectException: Connection refused: connect
at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1934)
at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:638)
at javax.mail.Service.connect(Service.java:317)
at javax.mail.Service.connect(Service.java:176)
at javax.mail.Service.connect(Service.java:125)
at javax.mail.Transport.send0(Transport.java:194)
at javax.mail.Transport.send(Transport.java:124)
at SimpleMailWithAttachment.<init>(SimpleMailWithAttachment.java:46)
at SimpleMailWithAttachment.main(SimpleMailWithAttachment.java:64)
    Caused by: java.net.ConnectException: Connection refused: connect

这是我用来尝试发送邮件的代码

public SimpleMailWithAttachment() {
    Properties props = System.getProperties();
    props.setProperty("mail.smtp.port", "587");
    props.setProperty("mail.smtp.host", "smtp.gmail.com");
    props.setProperty("mail.smtp.starttls.enable", "true");
    props.setProperty("mail.smtp.auth", "true");

    Authenticator auth = new MyAuthenticator();
    Session smtpSession = Session.getInstance(props, auth);
    smtpSession.setDebug(true);

    MimeMessage message = new MimeMessage(smtpSession);
    try {
        message.setFrom(new InternetAddress(email));

        message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
        final String encoding = "UTF-8";

        message.setSubject(subject, encoding);
        message.setText(text, encoding);
        Transport.send(message);
    } catch (Exception ex) {
        ex.printStackTrace();
    }
}

static class MyAuthenticator extends Authenticator {

    public PasswordAuthentication getPasswordAuthentication() {
        String username = "******@gmail.com";
        String password = "*****";
        return new PasswordAuthentication(username, password);

    }
}

我不认为您可以在没有身份验证的情况下使用 GMail。 您需要使用端口 465 而不是 587。

请参阅http://email.about.com/od/accessinggmail/f/Gmail_SMTP_Settings.htm

添加这些属性,帮助了我:

debug=true
spring.mail.host=smtp.gmail.com
spring.mail.port=587
spring.mail.username=user@gmail.com
spring.mail.password=somepwd

spring.mail.properties.mail.debug=true
spring.mail.properties.mail.transport.protocol=smtp
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.ssl.trust=*
spring.mail.properties.mail.smtp.starttls.enable=true

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM