0

Java メール API を使用してメーリング モジュールを実装しようとしています。これまで私がやってきたことは、

session = Session.getInstance(serverDetails,
                new javax.mail.Authenticator() {
                    protected PasswordAuthentication getPasswordAuthentication() {
                        return new PasswordAuthentication(userName, password);
                    }
                });
try {
            transport = session.getTransport("smtp");
            transport.connect();
        } catch (MessagingException e) {
            System.out.println(e.getMessage());
        }
MimeMessage message = new MimeMessage(session);
        // set the mail sender address
        message.setFrom(new InternetAddress(userName));
        // set the recipient addresses
        message.setRecipients(Message.RecipientType.TO,
                InternetAddress.parse(toAddr));
        // set subject of the mail
        message.setSubject(subject);
        // Set the body of the message
        message.setText(body);
        // Create a SMTP message object by which we will be able to get the
        // delivery status
        SMTPMessage smtpMsg = new SMTPMessage(message);
        smtpMsg.setReturnOption(SMTPMessage.RETURN_HDRS);
        smtpMsg.setNotifyOptions(SMTPMessage.NOTIFY_SUCCESS
                | SMTPMessage.NOTIFY_FAILURE);
        // attach the listeners for the connection and transmission
        transport.addConnectionListener(this);
        transport.addTransportListener(this);
        // connect to the server and send the message
        try{
            transport.sendMessage(smtpMsg, smtpMsg.getAllRecipients());
        }catch(IllegalStateException e){
            e.printStackTrace();
        }

トランスポートを一度だけ初期化し、複数のメールをループで送信しようとしています (上記のコードはループ部分を示していません)。許可されていますか?単一インスタンスの trasport オブジェクトで複数のメールを送信できますか?

次のエラーが表示されます

  org.quartz.core.ErrorLogger schedulerError
    SEVERE: Job (group1.job1 threw an exception.
    org.quartz.SchedulerException: Job threw an unhandled exception. [See nested exception: java.lang.IllegalStateException: Not connected]
        at org.quartz.core.JobRunShell.run(JobRunShell.java:213)
        at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:525)
    Caused by: java.lang.IllegalStateException: Not connected
        at com.sun.mail.smtp.SMTPTransport.checkConnected(SMTPTransport.java:2263)
        at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:1075)
        at org.mail.MailSender.sendMailAction(MailSender.java:237)
        at org.mail.MailSender.sendMail(MailSender.java:100)
        at com.util.PopulateMailQueue.populateQueue(PopulateMailQueue.java:172)
        at org.mail.cronjob.CronJob.execute(CronJob.java:14)
        at org.quartz.core.JobRunShell.run(JobRunShell.java:202)
        ... 1 more

ここで問題を指摘してください。

4

2 に答える 2

0

はい、接続後、トランスポートを閉じる前に、複数のメールをループで送信できます。

transport.connect();

for (int i = 0; i < count; i++) {

    //  Create your message
        transport.sendMessage(smtpMsg, smtpMsg.getAllRecipients());
    }

transport.close();

おそらくすべてのメールを送信する前にトランスポートを閉じたため、そのエラーを受け取りました

于 2013-01-04T07:23:13.590 に答える
-1

コンソールのログを確認できますか? 例外を見逃している可能性があります。これのため:

....
   transport.connect();
} catch (MessagingException e) {
    System.out.println(e.getMessage());
}

問題をコンソールに記録するだけで、続行します。接続が失敗した場合、通常のログにも表示されません。

于 2013-01-03T14:25:50.997 に答える