1

Apache commons 電子メールを使用してメールに添付ファイルを送信する際に問題があります。簡単に説明すると、メールは送信されますが、Outlook で見ると添付ファイルがまったくありません。

Apache commons email v1.4 と JAVA 8 を使用しています。ハード ドライブの C:\myfolder\myfile.log にあるログ ファイルを追加したいと考えています。

これは私がこれまでに添付ファイルを追加しようとしたものです

Path logRejetPath = Paths.get("C:\\myfolder\\myfile.log");
Boolean pathExists = Files.exists(logRejetPath, new LinkOption[]{LinkOption.NOFOLLOW_LINKS});

if (pathExists) {
   File rejLogFile = new File(logRejetPath.toString());
   email.attach(new FileDataSource(rejLogFile), "test", "test");                
}
email.send();

または

Path logRejetPath = Paths.get("C:\\myfolder\\myfile.log");
Boolean pathExists = Files.exists(logRejetPath, new LinkOption[]{LinkOption.NOFOLLOW_LINKS});

if (pathExists) {
   File rejLogFile = new File(logRejetPath.toString());
   email.attach(rejLogFile);                
}
email.send();

または

Path logRejetPath = Paths.get("C:\\myfolder\\myfile.log");
Boolean pathExists = Files.exists(logRejetPath, new LinkOption[]{LinkOption.NOFOLLOW_LINKS});

if (pathExists) {
    EmailAttachment attachment = new EmailAttachment();
    attachment.setPath(logRejetPath.toString());
    attachment.setDisposition(EmailAttachment.ATTACHMENT);
    attachment.setDescription("test");
    attachment.setName("test");
    email.attach(attachment);              
}
email.send();

正確なメールは、次のように作成された MultiPartEmail オブジェクトです。

MultiPartEmail email = new MultiPartEmail();

    try {
        email.setHostName(config.getSmtpHost()); 
        email.setSmtpPort(Integer.valueOf(config.getSmtpPort()));
        if (!config.getSmtpUser().isEmpty()) {
            email.setAuthenticator(
                    new DefaultAuthenticator(config.getSmtpUser(), config.getSmtpPwd()));
            email.setSSLOnConnect(true);
        } else {
            email.setSSLOnConnect(false);
        }
        email.setCharset("utf-8");
        email.setFrom("me@me.fr");
        email.setSubject("subjectforemail");
        email.setContent(this.getMessage(), "text/html");

        final String[] destinataires = config.getMailDestinataires().split(";");
        for (final String dest : destinataires) {
            email.addTo(dest);
        }

これらのさまざまな方法で添付ファイルを追加するたびに、メッセージが添付されたメールを受け取りますが、添付ファイルはありません。毎回、変数 pathExists は TRUE であり、毎回エラーはありません。

あなたの将来の答えと助けをありがとう。

編集:これを変更することで見つかった解決策:

MultiPartEmail email = new MultiPartEmail();

これで :

HtmlEmail email = new HtmlEmail();
4

1 に答える 1