Package org.apache.commons.mail

Examples of org.apache.commons.mail.EmailAttachment


      Email email = new SimpleEmail();
      if(attachmentUrl!=null) {
        // Create the attachment
          try {
            email = new MultiPartEmail();
            EmailAttachment attachment = new EmailAttachment();
            attachment.setURL(new URL(attachmentUrl));
            attachment.setDisposition(EmailAttachment.ATTACHMENT);
            attachment.setName("Attachment");
            ((MultiPartEmail) email).attach(attachment);
        } catch (MalformedURLException e) {
          logger.error("Invalid attachment url.", e);
        } catch (EmailException e) {
          logger.error("Error adding attachment to email.", e);
View Full Code Here

TOP

Related Classes of org.apache.commons.mail.EmailAttachment

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.