0

javax.mail を使用して、example@uni.ac.uk から receiver@uni.ac.uk に電子メールを送信したいと考えています。以下のコードを試しましたが、エラーが発生します。これも以下に示します。どんな助けでも大歓迎です。

    Properties prop = new Properties();
    Session sess = Session.getDefaultInstance(prop,null);

    Message msg = new MimeMessage(sess);
    msg.setFrom(new InternetAddress("example@uni.ac.uk", "Sender"));
             msg.addRecipient(Message.RecipientType.TO,
                      new InternetAddress("receiver@uni.ac.uk", "Receiver"));
            msg.setSubject("Your Example.com account has been activated");
            msg.setText("Testing messgage");
           Transport.send(msg);


}

発生するエラーは

Exception in thread "main" javax.mail.MessagingException: Could not connect to
SMTP host: localhost, port: 25; nested exception is: java.net.SocketException: Permission denied: connect at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1962) at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:654) at javax.mail.Service.connect(Service.java:295) 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 MAIL.sendmail.main(sendmail.java:41) Caused by: java.net.SocketException: Permission denied: connect at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.PlainSocketImpl.doConnect(Unknown Source) at java.net.PlainSocketImpl.connectToAddress(Unknown Source) at java.net.PlainSocketImpl.connect(Unknown Source) at java.net.SocksSocketImpl.connect(Unknown Source) at java.net.Socket.connect(Unknown Source) at java.net.Socket.connect(Unknown Source) at com.sun.mail.util.SocketFetcher.createSocket(SocketFetcher.java:321) at com.sun.mail.util.SocketFetcher.getSocket(SocketFetcher.java:237) at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1928) ... 7 more

4

2 に答える 2

1

gmail を使用して電子メールを送信するためのプロパティの例を次に示します。

private Properties createConfiguration() {
    return new Properties() {{
        put("mail.smtp.auth", "true");
        put("mail.smtp.host", "smtp.gmail.com");
        put("mail.smtp.port", "587");
        put("mail.smtp.starttls.enable", "true");
    }};
}
于 2013-07-22T00:48:30.440 に答える
0

Properties オブジェクトの SMTP サーバーを自分のマシン (localhost) に設定しますが、これは明らかにポート 25 で SMTP サーバーを実行していません。またはGMailが提供するものなど...)。

于 2013-07-22T00:05:35.430 に答える