TODAY JAVA SCHOOL

In java school, programming, design, computer general knowledge, web application, software, web services, social media, digital marketing, oops, concept of programming language, oops feature, console media, graphics medium, first programming, c, c ++ , Java, PHP, SQL, MySQL, HTML, HTML_5, J_query, JavaScript, Bootstrap, Framework, images with logos, examples, shared and explained.

https://www.amazon.in/b?node=26373545031&linkCode=ll2&tag=1234567801cdb-21&linkId=3b9882431b00409b44141e0344b35a15&language=en_IN&ref_=as_li_ss_tl

Breaking

Monday 27 April 2020

Forwarding Email In Java

Forwarding email in Java

We can forward the received mail to someone else as we send emails. There are many javamail classes that are used to forward the messages to the destination resource.

For better understanding of this example, learn the steps of sending
 email using JavaMail API first.

For receiving or sending the email using JavaMail API, you need to
load the two jar files:
·       mail.jar
·       activation.jar

forwarding email image download

Fig: Forwarding Email 

Example of forwarding email in Java

import java.util.*;  
import javax.mail.*;  
import javax.mail.internet.*;  
  
public class ForwardMail{  
 public static void main(String[] args)throws Exception {  
  final String user="completejavaschool.blogspot.com";//change accordingly  
  final String password="xxxxx";//change accordingly  
  
  
  //get the session object  
  Properties props = new Properties();  
  props.put("mail.smtp.host", "mail.javatpoint.com");  
  props.put("mail.smtp.auth", "true");  
  
  Session session = Session.getDefaultInstance(props,  
    new javax.mail.Authenticator() {  
    protected PasswordAuthentication getPasswordAuthentication() {  
        return new PasswordAuthentication(user,password);  
    }  
  });  
   
          
  // Get a Store object and connect to the current host   
  Store store = session.getStore("pop3");  
  store.connect("completejavaschool.blogspot.com",user,password);  
  
  //Create a Folder object and open the folder  
  Folder folder = store.getFolder("inbox");  
  folder.open(Folder.READ_ONLY);  
    
  Message message = folder.getMessage(1);  
  
  // 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.println(message.getContent());  
  
  // compose the message to forward  
  Message message2 = new MimeMessage(session);  
  message2.setSubject("Fwd: " + message.getSubject());  
  message2.setFrom(new InternetAddress(from));  
  message2.addRecipient(Message.RecipientType.TO,  
  new InternetAddress(to));  
  
  // Create your new message part  
  BodyPart messageBodyPart = new MimeBodyPart();  
  messageBodyPart.setText("Oiginal message:\n\n");  
  
  // Create a multi-part to combine the parts  
  Multipart multipart = new MimeMultipart();  
  multipart.addBodyPart(messageBodyPart);  
  
  // Create and fill part for the forwarded content  
  messageBodyPart = new MimeBodyPart();  
  messageBodyPart.setDataHandler(message.getDataHandler());  
  
  // Add part to multi part  
  multipart.addBodyPart(messageBodyPart);  
  
  // Associate multi-part with message  
  message2.setContent(multipart);  
  
  // Send message  
  Transport.send(message2);  
  
  System.out.println("message forwarded ....");  
  }  
}   

No comments:

Post a Comment