1. ホーム

[解決済み】JavaアプリケーションでGMail、Yahoo、Hotmailを使ってメールを送信するにはどうしたらいいですか?

2022-04-09 04:19:28

質問

GMailのアカウントを使ってJavaアプリケーションからメールを送信することは可能ですか? 会社のメールサーバにJavaアプリを設定し、メールを送信できるようにしましたが、アプリケーションを配布する際にそれでは間に合いません。Hotmail、Yahoo、GMailのいずれかを使用した回答でもかまいません。

解決方法は?

まず JavaMail API を実行し、関連する jar ファイルがクラスパスにあることを確認します。

GMailを使用した完全な動作例です。

import java.util.*;
import javax.mail.*;
import javax.mail.internet.*;

public class Main {

    private static String USER_NAME = "*****";  // GMail user name (just the part before "@gmail.com")
    private static String PASSWORD = "********"; // GMail password
    private static String RECIPIENT = "[email protected]";

    public static void main(String[] args) {
        String from = USER_NAME;
        String pass = PASSWORD;
        String[] to = { RECIPIENT }; // list of recipient email addresses
        String subject = "Java send mail example";
        String body = "Welcome to JavaMail!";

        sendFromGMail(from, pass, to, subject, body);
    }

    private static void 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();
        }
    }
}

当然ながら、もっと多くのことを catch ブロックは、上記のサンプルコードで私が行ったようにスタックトレースを表示する以上のものです。 (上記の例のように catch ブロックを使って、JavaMail APIのどのメソッド呼び出しが例外を投げるかを確認することで、その適切な処理方法をより良く理解することができます)。


ありがとうございます ジョドネル をはじめ、回答してくれた皆さん。 彼の回答によって95%くらいは完全な答えにたどり着いたので、懸賞金をあげます。