在本章中,我們將看到如何使用JavaMail API來轉發電子郵件。接著在下面的程式的基本步驟是:
獲取Session物件與POP和SMTP伺服器的細節的屬性。我們需要的POP細節來檢索資訊和SMPT詳細資訊傳送郵件。
建立POP3儲存物件,並連線到儲存。
建立檔案夾物件,並在您的郵箱中開啟相應的檔案夾。
檢索訊息。
遍歷的訊息,如果你想轉發鍵入“Y”或“y”。
得到訊息的所有資訊(收件人,發件人,主題,內容)。
通過與組成訊息的各個部分的工作建立轉發訊息。第一部分將是訊息的文字和第二部分將要轉發的郵件。結合兩成多部分。那麼你多部分新增到妥善處理訊息並行送它。
關閉傳輸,檔案夾和儲存物件分別。
在這裡,我們使用JangoSMPT伺服器通過該電子郵件被傳送到我們的目標電子郵件地址。設定是在環境設定章節解釋。
建立一個Java類檔案ForwardEmail,是其內容如下:
package com.yiibai; import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.Date; import java.util.Properties; import javax.mail.BodyPart; import javax.mail.Folder; import javax.mail.Message; import javax.mail.Multipart; import javax.mail.PasswordAuthentication; import javax.mail.Session; import javax.mail.Store; 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 ForwardEmail { public static void main(String[] args) { Properties properties = new Properties(); properties.put("mail.store.protocol", "pop3"); properties.put("mail.pop3s.host", "pop.gmail.com"); properties.put("mail.pop3s.port", "995"); properties.put("mail.pop3.starttls.enable", "true"); properties.put("mail.smtp.auth", "true"); properties.put("mail.smtp.host", "relay.jangosmtp.net"); properties.put("mail.smtp.port", "25"); Session session = Session.getDefaultInstance(properties); try { // session.setDebug(true); // Get a Store object and connect to the current host Store store = session.getStore("pop3s"); store.connect("pop.gmail.com", "[email protected]", "*****");//change the user and password accordingly // Create a Folder object and open the folder Folder folder = store.getFolder("inbox"); folder.open(Folder.READ_ONLY); BufferedReader reader = new BufferedReader(new InputStreamReader( System.in)); Message[] messages = folder.getMessages(); if (messages.length != 0) { for (int i = 0, n = messages.length; i < n; i++) { Message message = messages[i]; // Get all the information from the message String from = InternetAddress.toString(message.getFrom()); if (from != null) { System.out.println("From: " + from); } String replyTo = InternetAddress.toString(message .getReplyTo()); if (replyTo != null) { System.out.println("Reply-to: " + replyTo); } String to = InternetAddress.toString(message .getRecipients(Message.RecipientType.TO)); if (to != null) { System.out.println("To: " + to); } String subject = message.getSubject(); if (subject != null) { System.out.println("Subject: " + subject); } Date sent = message.getSentDate(); if (sent != null) { System.out.println("Sent: " + sent); } System.out.print("Do you want to reply [y/n] : "); String ans = reader.readLine(); if ("Y".equals(ans) || "y".equals(ans)) { Message forward = new MimeMessage(session); // Fill in header forward.setRecipients(Message.RecipientType.TO, InternetAddress.parse(from)); forward.setSubject("Fwd: " + message.getSubject()); forward.setFrom(new InternetAddress(to)); // Create the message part MimeBodyPart messageBodyPart = new MimeBodyPart(); // Create a multipart message Multipart multipart = new MimeMultipart(); // set content messageBodyPart.setContent(message, "message/rfc822"); // Add part to multi part multipart.addBodyPart(messageBodyPart); // Associate multi-part with message forward.setContent(multipart); forward.saveChanges(); // Send the message by authenticating the SMTP server // Create a Transport instance and call the sendMessage Transport t = session.getTransport("smtp"); try { //connect to the smpt server using transport instance //change the user and password accordingly t.connect("abc", "*****"); t.sendMessage(forward, forward.getAllRecipients()); } finally { t.close(); } System.out.println("message forwarded successfully...."); // close the store and folder objects folder.close(false); store.close(); }// end if }// end for }// end if } catch (Exception e) { e.printStackTrace(); } } }
您可以通過取消註釋語句上設定偵錯 session.setDebug(true);
現在類準備好了,編譯上面的類。我已經儲存了類ForwardEmail.java目錄: /home/manisha/JavaMailAPIExercise. 我們需要javax.mail.jar 和 activation.jar 在 classpath中。執行下面的命令從命令提示字元編譯類(兩個jar 放置在 /home/manisha/ 目錄下):
javac -cp /home/manisha/activation.jar:/home/manisha/javax.mail.jar: ForwardEmail.java
現在,這個類被編譯,執行下面的命令來執行:
java -cp /home/manisha/activation.jar:/home/manisha/javax.mail.jar: ForwardEmail
你應該看到下面的訊息命令控制台上:
From: ABC <[email protected]> Reply-to: [email protected] To: XYZ <[email protected]> Subject: Hi today is a nice day Sent: Thu Oct 17 15:58:37 IST 2013 Do you want to reply [y/n] : y message forwarded successfully....
檢查該郵件傳送的收件箱。在我們的例子中轉發的郵件看起來如下: