调用java方法确认

时间:2015-06-08 18:00:57

标签: java

我使用此代码将电子邮件发送到邮箱。

private String sendFromGMail(String from, String pass, String[] to, String subject, String body)
    {
        Properties props = System.getProperties();
        String host = "smtp.gmail.com";
        props.put("mail.smtp.starttls.enable", "true");
        props.put("mail.smtp.host", host);
        props.put("mail.smtp.user", from);
        props.put("mail.smtp.password", pass);
        props.put("mail.smtp.port", "587");
        props.put("mail.smtp.auth", "true");

        Session session = Session.getDefaultInstance(props);
        MimeMessage message = new MimeMessage(session);

        try
        {
            message.setFrom(new InternetAddress(from));
            InternetAddress[] toAddress = new InternetAddress[to.length];

            // To get the array of addresses
            for (int i = 0; i < to.length; i++)
            {
                toAddress[i] = new InternetAddress(to[i]);
            }

            for (int i = 0; i < toAddress.length; i++)
            {
                message.addRecipient(Message.RecipientType.TO, toAddress[i]);
            }

            message.setSubject(subject);
            message.setText(body);
            Transport transport = session.getTransport("smtp");
            transport.connect(host, from, pass);
            transport.sendMessage(message, message.getAllRecipients());
            transport.close();
        }
        catch (AddressException ae)
        {
            ae.printStackTrace();
        }
        catch (MessagingException me)
        {
            me.printStackTrace();
        }

     return "message is send";
    }

我很感兴趣如何插入这个电子邮件成功发送的检查。例如有没有办法检查是否有任何异常?如果没有异常返回&#34;邮件发送&#34;。

4 个答案:

答案 0 :(得分:3)

请看这里:Java Mail API。基本上你可以做两件事:

  1. 实施并注册TransportListener
  2. 抓住这些例外:
  3.   

    SendFailedException - 如果由于地址无效而导致发送失败。   MessagingException - 如果连接中的连接已死或未连接   状态

    例如:

    TransportListener listener = new MyTransportAdapter();
    transport.addTransportListener(listener);
    

    其中:

    class MyTransportAdapter extends TransportAdapter {
    //Implement only methods of interest from TransportAdapter API
    }
    

答案 1 :(得分:1)

您可以添加这些退货,例如:

...
catch (AddressException ae)
{
    ae.printStackTrace();
    return "Mail is not sent for some reason 1";
}
catch (MessagingException me)
{
    me.printStackTrace();
    return "Mail is not sent for some reason 2";
}

答案 2 :(得分:1)

只需添加booleanfinally集团,就像这样:

try{
   .... 
   boolean isExceptionThrown = false ;
}
catch (AddressException ae){
   ae.printStackTrace();
   isExceptionThrown = true ;
}
catch (MessagingException me)
{
   me.printStackTrace();
   isExceptionThrown = true ;
}
finally{
   if (isExceptionThrown == false) return "mail OK sent" ;
}

答案 3 :(得分:0)

如果您没有例外,则仅表示SMTP服务器已接受传递您的消息并将尝试传递该消息。但地址可能甚至不存在,唯一的方法是等待,看看你是否收到“交付状态通知”告诉你,但有些服务器甚至不会发送给你。

基本上,如果您需要一种可靠的方式来发送消息,请不要使用电子邮件。