Example usage for javax.mail.internet ContentDisposition ContentDisposition

List of usage examples for javax.mail.internet ContentDisposition ContentDisposition

Introduction

In this page you can find the example usage for javax.mail.internet ContentDisposition ContentDisposition.

Prototype

public ContentDisposition() 

Source Link

Document

No-arg Constructor.

Usage

From source file:com.adaptris.mail.MailSenderImp.java

private void addAttachmentsToMessage(MimeMultipart multipart) throws MailException {
    try {/* ww  w .ja va 2s  .  c  om*/
        for (Attachment a : attachments) {
            MimeBodyPart part = create(a.getBytes(), new InternetHeaders(), a.getEncoding());
            part.setHeader(Mail.CONTENT_TYPE, a.getContentType());
            ContentDisposition cd = new ContentDisposition();
            cd.setDisposition(Mail.DISPOSITION_TYPE_ATTACHMENT);
            if (a.getFilename() != null) {
                cd.setParameter(Mail.DISPOSITION_PARAM_FILENAME, a.getFilename());
            }
            part.setDisposition(cd.toString());
            multipart.addBodyPart(part);
        }
    } catch (Exception e) {
        throw new MailException(e);
    }
}