2

SSL (SMTPS) と認証を使用してメールを送信する必要があります。ただし、Apache Commons Net では、AuthenticationSMTPClient (SSL なし、SMTPSClient を拡張しますか?) または SMTPSClient (認証なし?) のいずれかが存在するようですが、両方 (SSL + 認証) の組み合わせが必要です。どうすればこれができるか知っている人はいますか?ありがとう!

4

1 に答える 1

4

これに返信するのが遅すぎることはわかっていますが、他の人への将来の参考のために、それが拡張されているのでAuthenticatingSMTPClient提供します以下はサンプルコードです。ssl + authenticationSMTPSClient.//1

コード:

import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.io.PrintWriter;
import java.io.Writer;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import java.security.spec.InvalidKeySpecException;
import java.util.ArrayList;
import java.util.List;

import org.apache.commons.net.PrintCommandListener;
import org.apache.commons.net.io.Util;
import org.apache.commons.net.smtp.AuthenticatingSMTPClient;
import org.apache.commons.net.smtp.AuthenticatingSMTPClient.AUTH_METHOD;
import org.apache.commons.net.smtp.SMTPReply;
import org.apache.commons.net.smtp.SimpleSMTPHeader;

public final class SMTPMail
{
    public static void main(String[] args) throws InvalidKeyException, NoSuchAlgorithmException, InvalidKeySpecException
    {
        String sender, recipient, subject, filename, server;
        List<String> ccList = new ArrayList<String>();
        FileReader fileReader = null;
        Writer writer;
        SimpleSMTPHeader header;
        AuthenticatingSMTPClient client;

        server = "<smtp server>"; // 1
        try
        {
            sender = "<your user name>"; // 2
            recipient = "<recipient>"; // 3
            subject = "<mail subject>"; // 4

            header = new SimpleSMTPHeader(sender, recipient, subject);
            filename = "hello.txt"; //This will be the body of your mail //5

            try
            {
                fileReader = new FileReader(filename);
            }
            catch (FileNotFoundException e)
            {
                System.err.println("File not found. " + e.getMessage());
            }

            client = new AuthenticatingSMTPClient("TLS", false);
            client.addProtocolCommandListener(new PrintCommandListener(
                    new PrintWriter(System.out), true));

            client.connect(server);

            if (!SMTPReply.isPositiveCompletion(client.getReplyCode()))
            {
                client.disconnect();
                System.err.println("SMTP server refused connection.");
                System.exit(1);
            }

            client.login("hostname.testing.smtp.api"); //6

            if(client.execTLS())
            {
                if(client.auth(AUTH_METHOD.LOGIN, "<your user name>", "<your password>")) //7
                {
                    client.setSender(sender);
                    client.addRecipient(recipient);
                    for (String recpt : ccList) {
                        client.addRecipient(recpt);
                    }

                    writer = client.sendMessageData();

                    if (writer != null)
                    {
                        writer.write(header.toString());
                        Util.copyReader(fileReader, writer);
                        writer.close();
                        client.completePendingCommand();
                    }

                    if (fileReader != null ) {
                        fileReader.close();
                    }
                }
            }
            client.logout();
            client.disconnect();
        }
        catch (IOException e)
        {
            e.printStackTrace();
            System.exit(1);
        }
    }
}
于 2015-06-12T19:00:34.730 に答える