• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

attachment with message....

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi...

i am having problem with sending mails with attachment and message....

i'm able to send mail with message and no attachment and also with attachment and no message...but not both at the same time...

here's the code...

import java.util.Properties;

import javax.mail.Session;
import javax.mail.Message;
import javax.mail.BodyPart;
import javax.mail.MessagingException;
import javax.mail.Multipart;
import javax.mail.Transport;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeBodyPart;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMultipart;
import javax.activation.DataHandler;
import javax.activation.DataSource;
import javax.activation.FileDataSource;


public class EmailNotification {

public EmailNotification() {

}

public static void sendMail(String to,String from, String subject, String message, String attachmentFileName){
Properties props = new Properties();

String host = "<host name>";

props.put("mail.smtp.host",host);

Session session = Session.getDefaultInstance(props, null);

Message msg = new MimeMessage(session);

try {
msg.setFrom(new InternetAddress(from));

InternetAddress[] address =null ;
address=InternetAddress.parse(to);
msg.setRecipients(Message.RecipientType.TO, address);

BodyPart messageBodyPart = new MimeBodyPart();
Multipart multipart = new MimeMultipart();

msg.setSubject(subject);


DataSource source = new FileDataSource(attachmentFileName);
messageBodyPart.setDataHandler(new DataHandler(source));
String fileApper = attachmentFileName.substring(attachmentFileName.lastIndexOf("\\")+1);
messageBodyPart.setFileName(fileApper);
messageBodyPart.setText(message);
multipart.addBodyPart(messageBodyPart);

msg.setContent(multipart);


Transport.send(msg);
}
catch(AddressException ae){

}
catch(MessagingException me) {

}

}
}
 
Sheriff
Posts: 28328
96
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you downloaded JavaMail then you have a "demo" directory that contains example code. You will find an example of what you want to do in that directory, I think. You need separate parts for your body text and each of your attachments.
 
If you are using a wood chipper, you are doing it wrong. Even on this tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic