web-dev-qa-db-ja.com

添付ファイル、プレーン/テキスト、およびテキスト/ htmlを使用してSMTP経由でメールを送信する

私の目標:プレーン/テキスト、テキスト/ html、および添付ファイル付きのトランザクションメールをSMTP経由で送信します。

私のコード:JavaMailで実装

私の問題:hotmailやOutlookでは問題なく見えます。ただし、gmailでは、.txt添付ファイル付きのメールの場合、メッセージ本文が正しく表示されません(添付ファイルが画像の場合は問題なく機能します)

任意の助けをいただければ幸いです。

これが私の生のSMTP出力です:

Subject: ALTERNATIVE | TXT | HTML |ATT.ATTACHMENT | Thu Jun 13 17:48:04 EDT
 2013
MIME-Version: 1.0
Content-Type: multipart/alternative; 
    boundary="----=_Part_0_21791733.1371160084561"

------=_Part_0_21791733.1371160084561
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Body message in text format!
------=_Part_0_21791733.1371160084561
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit

Body message in <b>html</b> format! Sent on Thu Jun 13 17:48:04 EDT 2013<br> to: [email protected]<br> to: [email protected]<br> cc: [email protected]<br> cc: [email protected]
------=_Part_0_21791733.1371160084561
Content-Type: text/plain; charset=us-ascii; name=email_attachment.txt
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename=email_attachment.txt

This is a text attachment file!
------=_Part_0_21791733.1371160084561--
.
250 Delivery in progress
QUIT

一部のスクリーンショット

.txt添付ファイルが1つだけ送信されます。メッセージの本文が表示されず、添付ファイルが複製されます。

enter image description here

同じメッセージですが、添付ファイル(.gif)が異なります。すべてが正常に見えます。 enter image description here

===ソリューションJava開発者====

全体的なアイデアは次のとおりです: http://www.coderanch.com/t/503380/Java/java/Java-Mail-text-html-attachment

だから、今私のコードは次のようになります:

// contentPart is the content to be sent. It is divided in bodyContent and attachmentContent
            MimeMultipart contentPart = new MimeMultipart("mixed");

            // Message body in txt and html format
            MimeMultipart bodyPart = new MimeMultipart("alternative");
            // Creates plain text message
            BodyPart bodyTxt = new MimeBodyPart();
            bodyTxt.setText(getMessageBodyText());
            // Creates html message
            BodyPart bodyHtml = new MimeBodyPart();
            bodyHtml.setContent(getMessageBodyHtml(), "text/html");
            bodyPart.addBodyPart(bodyTxt);
            bodyPart.addBodyPart(bodyHtml);

            // Wrapper for bodyTxt and bodyHtml
            MimeBodyPart bodyContent = new MimeBodyPart();
            bodyContent.setContent(bodyPart);

            // At this point, contentPart contains bodyTxt and bodyHtml wrapped in a multipart/alternative
            contentPart.addBodyPart(bodyContent);

            // Adds attachments to contentPart
            if (getAttachments() != null) {
                for(File f : getAttachments()) {
                    try {
                        MimeBodyPart attachmentPart = new MimeBodyPart();
                        attachmentPart.attachFile(f);
                        contentPart.addBodyPart(attachmentPart);
                    } catch (IOException e) {
                        logger.severe("Could not attach file to email!" +
                                " TO: "+ getTo().toString() +
                                "; CC: "+ getCc().toString() +
                                "; ExceptionMessage: " + e.getMessage());
                        throw new SmtpRequestException(e.getMessage());
                    }
                }
            }
11
Rafa

メッセージの構造が間違っています。次のような正しい構造を得るには、ネストされたマルチパートが必要です。

  multipart/mixed
    multipart/alternative (holding the two forms of the body part)
      text/plain
      text/html
    text/plain or image/gif (the attachment)
11
Bill Shannon