// Setting the Subject and Content Type
msg.setSubject(subject);
msg.setContent(multipart);
Transport transport = session.getTransport(addressTo[0]);
transport.addTransportListener(this);
transport.connect();
// Sending Message
for(Address to: addressTo) {
try{
//msg.setRecipients(RecipientType.TO,new Address[]{to});