0

问:有没有人从 SMTP 服务器通过 JavaMail 成功地向 hotmail 帐户发送电子邮件?如果是这样,您可以提出有效的代码吗?

我可以使用我的 JavaMail 代码向 gmail 和 yahoo 帐户发送电子邮件,但我无法向 hotmail 帐户发送任何电子邮件。如果我使用我的手机或其他电子邮件客户端并使用与我的 JavaMail 代码相同的 SMTP 服务器,那么我确实可以向 hotmail 帐户发送电子邮件。这让我相信 JavaMail 遗漏了 hotmail 似乎认为很重要的标志。使用 Apache Commons JavaMail 实现会产生相同的结果。

        try{
            Email email = new SimpleEmail();
            email.setSmtpPort(Integer.parseInt(port));
            email.setAuthenticator(new DefaultAuthenticator(from,  MyUtilities.getSystemPWD(from)));
            email.setDebug(true);
            email.setHostName(host);
            email.setFrom(from);
            email.setSubject(subject);
            email.setMsg("test");                
            email.addTo(to);                
            email.setStartTLSRequired(true);
            email.send();    
        } catch(Exception ex){
              MyLogger.log("MyUtilities.sendEmail: Messaging error",ex);
              Logger.getLogger(MyUtilities.class.getName()).log(Level.SEVERE, "MyUtilities.sendEmail: Messaging error", ex);                
        }

回答: 下面有一个公认的答案,但问题的根本原因是 Hotmail 需要额外的身份验证标头(SPF 和 DKIM)来证明您的发件人地址的域名与 SMTP 服务器相关联。使用中间 SMTP 服务器(如 sendgrid)可以解决问题,因为它们会自动为您完成……但要付出一定的代价。

您也可以尝试自己添加所需的 SPF 和 DKIM 标头。

4

2 回答 2

2

您可以尝试使用 sendgrid。我刚刚对其进行了测试,如果您使用合法的电子邮件地址作为发件人,它似乎可以工作。

    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.mail.Authenticator;
    import javax.mail.PasswordAuthentication;
    import java.util.Properties;

    public class SimpleMail {

        private static final String SMTP_HOST_NAME = "smtp.sendgrid.net";
        private static final String SMTP_AUTH_USER = "sendgrid-username";
        private static final String SMTP_AUTH_PWD  = "sendgrid-password";

        public static void main(String[] args) throws Exception{
           new SimpleMail().test();
        }

        public void test() throws Exception{
            Properties props = new Properties();
            props.put("mail.transport.protocol", "smtp");
            props.put("mail.smtp.host", SMTP_HOST_NAME);
            props.put("mail.smtp.port", 587);
            props.put("mail.smtp.auth", "true");

            Authenticator auth = new SMTPAuthenticator();
            Session mailSession = Session.getDefaultInstance(props, auth);
            // uncomment for debugging infos to stdout
            // mailSession.setDebug(true);
            Transport transport = mailSession.getTransport();

            MimeMessage message = new MimeMessage(mailSession);

            Multipart multipart = new MimeMultipart("alternative");

            BodyPart part1 = new MimeBodyPart();
            part1.setText("Checking to see what box this mail goes in ?");

            BodyPart part2 = new MimeBodyPart();
            part2.setContent("Checking to see what box this mail goes in ?", "text/html");

            multipart.addBodyPart(part1);
            multipart.addBodyPart(part2);

            message.setContent(multipart);
            message.setFrom(new InternetAddress("actual@emailaddress-goeshere.com"));
            message.setSubject("Can you see this mail ?");
            message.addRecipient(Message.RecipientType.TO,
                 new InternetAddress("person@tosendto.com"));

            transport.connect();
            transport.sendMessage(message,
                message.getRecipients(Message.RecipientType.TO));
            transport.close();
        }

        private class SMTPAuthenticator extends javax.mail.Authenticator {
            public PasswordAuthentication getPasswordAuthentication() {
               String username = SMTP_AUTH_USER;
               String password = SMTP_AUTH_PWD;
               return new PasswordAuthentication(username, password);
            }
        }
    }
于 2013-10-17T05:52:13.397 回答
0

如果您有可以发送到任何其他 Internet 电子邮件地址的代码,那么它也应该可以发送到 Hotmail。

如果您没有通用的代码,请参阅JavaMail 示例代码JavaMail FAQ

如果您尝试使用 Hotmail 作为您的 SMTP 服务器,请参阅JavaMail 常见问题解答

于 2013-10-18T19:11:55.840 回答