位置:首頁 > Java技術 > JavaMail > JavaMail 發送電子郵件內嵌圖片

JavaMail 發送電子郵件內嵌圖片

下麵的一個例子,是從你的機器發送HTML電子郵件,並內嵌圖像。在這裡,我們使用JangoSMPT服務器通過該電子郵件被發送到我們的目標電子郵件地址。

要發送電子郵件,其中包含一個內嵌的圖像,遵循的步驟是:

  • 獲取一個Session

  • 創建一個默認的MimeMessage對象,並設置發件人,收件人,主題(From, To, Subject )在消息中。

  • 創建一個MimeMultipart的對象。

  • 在我們的例子中,我們將在郵件的HTML部分和圖像。因此,首先創建HTML內容,並在多部分對象將其設置為:

    // first part (the html)
    BodyPart messageBodyPart = new MimeBodyPart();
    String htmlText = "<H1>Hello</H1><img src="cid:image">";
    messageBodyPart.setContent(htmlText, "text/html");
    // add it
    multipart.addBodyPart(messageBodyPart);
  • 接下來創建一個DataHandler的如下添加圖像:

    // second part (the image)
    messageBodyPart = new MimeBodyPart();
    DataSource fds = new FileDataSource(
     "/home/manisha/javamail-mini-logo.png");
    
    messageBodyPart.setDataHandler(new DataHandler(fds));
    messageBodyPart.setHeader("Content-ID", "<image>");
  • 接下來設置多重如下消息中:

    message.setContent(multipart);
  • 發送使用傳輸對象的消息。

創建Java類

創建一個Java類文件SendInlineImagesInEmail,是其內容如下:

package com.yiibai;

import java.util.Properties;
import javax.activation.DataHandler;
import javax.activation.DataSource;
import javax.activation.FileDataSource;
import javax.mail.BodyPart;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeBodyPart;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMultipart;

public class SendInlineImagesInEmail {
   public static void main(String[] args) {
      // Recipient's email ID needs to be mentioned.
      String to = "destinationemail@gmail.com";

      // Sender's email ID needs to be mentioned
      String from = "fromemail@gmail.com";
      final String username = "manishaspatil";//change accordingly
      final String password = "******";//change accordingly

      // Assuming you are sending email through relay.jangosmtp.net
      String host = "relay.jangosmtp.net";

      Properties props = new Properties();
      props.put("mail.smtp.auth", "true");
      props.put("mail.smtp.starttls.enable", "true");
      props.put("mail.smtp.host", host);
      props.put("mail.smtp.port", "25");

      Session session = Session.getInstance(props,
         new javax.mail.Authenticator() {
            protected PasswordAuthentication getPasswordAuthentication() {
               return new PasswordAuthentication(username, password);
            }
         });

      try {

         // Create a default MimeMessage object.
         Message message = new MimeMessage(session);

         // Set From: header field of the header.
         message.setFrom(new InternetAddress(from));

         // Set To: header field of the header.
         message.setRecipients(Message.RecipientType.TO,
            InternetAddress.parse(to));

         // Set Subject: header field
         message.setSubject("Testing Subject");

         // This mail has 2 part, the BODY and the embedded image
         MimeMultipart multipart = new MimeMultipart("related");

         // first part (the html)
         BodyPart messageBodyPart = new MimeBodyPart();
         String htmlText = "<H1>Hello</H1><img src="cid:image">";
         messageBodyPart.setContent(htmlText, "text/html");
         // add it
         multipart.addBodyPart(messageBodyPart);

         // second part (the image)
         messageBodyPart = new MimeBodyPart();
         DataSource fds = new FileDataSource(
            "/home/manisha/javamail-mini-logo.png");

         messageBodyPart.setDataHandler(new DataHandler(fds));
         messageBodyPart.setHeader("Content-ID", "<image>");

         // add image to the multipart
         multipart.addBodyPart(messageBodyPart);

         // put everything together
         message.setContent(multipart);
         // Send message
         Transport.send(message);

         System.out.println("Sent message successfully....");

      } catch (MessagingException e) {
         throw new RuntimeException(e);
      }
   }
}

由於我們使用的是由主機提供商JangoSMTP提供的SMTP服務器,我們需要驗證用戶名和密碼。javax.mail.PasswordAuthentication類用於驗證的密碼。

編譯並運行

現在,我們班是準備好了,讓我們編譯上麵的類。我已經保存了類SendInlineImagesInEmail.java 目錄: /home/manisha/JavaMailAPIExercise. 我們需要 javax.mail.jar 和 activation.jar 文件在 classpath 中。執行下麵的命令從命令提示符編譯類(兩個罐子被放置在/home/manisha/ 目錄下):

javac -cp /home/manisha/activation.jar:/home/manisha/javax.mail.jar: SendInlineImagesInEmail.java

現在,這個類被編譯,執行下麵的命令來運行:

java -cp /home/manisha/activation.jar:/home/manisha/javax.mail.jar: SendInlineImagesInEmail

驗證輸出

應該看到下麵的消息命令控製台上:

Sent message successfully....

因為我通過JangoSMTP發送郵件到我的Gmail地址,下麵的郵件會在我的Gmail帳戶的收件箱中接收:

JavaMail API Send Email With Inline Images