我无法从Java Mail Api发送Yahoo Mail

时间:2012-12-21 09:40:05

标签: android email javamail yahoo

我使用以下代码在Yahoo上发送电子邮件: -

    Properties   props1 = new Properties();
    EmailAuthenticator authenticator = new EmailAuthenticator(account);

        props1.setProperty("mail.transport.protocol", "smtps");
        props1.setProperty("mail.host", "smtp.mail.yahoo.com");
        props1.put("mail.smtp.auth", "true");
        props1.put("mail.smtp.port", "587");
           props1.put("mail.smtp.starttls.enable", "true");
        smtpSession = Session.getInstance(props1, authenticator);
              smtpSession.setDebug(true);

但我正面临javax.mail.MessagingException [EOF]我在过去5天遇到这个问题我的LogCat是:---

  Message-ID:<1082699080.2.1356082481793.JavaMail.javamailuser@localhost>
Subject: Hello
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
554 Transaction failed : Cannot send message due to possible abuse; please visit http://postmaster.yahoo.com/abuse_smtp.html for more information
 DEBUG SMTP: got response code 554, with response: 554 Transaction failed : Cannot send message due to possible abuse; please visit http://postmaster.yahoo.com/abuse_smtp.html for more information
RSET
DEBUG SMTP: EOF: [EOF]
javax.mail.MessagingException: [EOF]
com.sun.mail.smtp.SMTPTransport.issueCommand(SMTPTransport.java:1481)
 com.sun.mail.smtp.SMTPTransport.issueSendCommand(SMTPTransport.java:1512)
 com.sun.mail.smtp.SMTPTransport.finishData(SMTPTransport.java:1321)
at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:637)
   javax.mail.Transport.send0(Transport.java:189)
    javax.mail.Transport.send(Transport.java:118)
   com.privymo.javamail.EmailManager.sendMail(EmailManager.java:203)

请帮助 谢谢,

2 个答案:

答案 0 :(得分:1)

错误回溯显示您收到SMTP错误消息:

  554交易失败:由于可能滥用而无法发送消息;有关更多信息,请访问http://postmaster.yahoo.com/abuse_smtp.html

特定雅虎!页面无法访问,从消息中可以清楚地看到Yahoo!怀疑您的邮件可能是垃圾邮件并且拒绝投放邮件。 thread in the Yahoo! Mail Help Community建议您与Yahoo! Mail Customer Care联系以获取更多信息和帮助。

答案 1 :(得分:0)

你有雅虎! Mail Plus帐户?

来自JavaMail FAQ

"Note that free Yahoo! Mail accounts do not allow POP3 or SMTP access. You must purchase a Yahoo! Mail Plus account to get POP3 and SMTP access."