Package com.blazebit.mail

Examples of com.blazebit.mail.Mail


  private String to = "christian@blazebit.com";
  private String subject = "test";
  private String text = "Testtext";

  public String send() throws IOException {
    Mail m = new Mail();
    m.setFrom(from);
    m.addTo(to);
    m.setSubject(subject);
    m.setText(text);
    m.setHtml("<p>" + text + "</p><br/><img src=\"cid:MyAvatar\">");
    m.addEmbeddedImage("MyAvatar",
        new File("D:/Eigene Bilder/avatar1.jpg"), "image/jpeg");
    m.addAttachment("YourAvatar", new File("D:/Eigene Bilder/avatar.jpg"),
        "image/jpeg");

    MailTransport mt = MailTransport.SMTPS;
    mt.addTrustedHost("web118.ip-projects.de", true);
    mt.addTrustedHost("blazebit.com", true);
View Full Code Here


  private String to = "christian@blazebit.com";
  private String subject = "test";
  private String text = "Testtext";

  public String send() throws IOException {
    Mail m = new Mail();
    m.setFrom(from);
    m.addTo(to);
    m.setSubject(subject);
    m.setText(text);
    m.setHtml("<p>" + text + "</p><br/><img src=\"cid:MyAvatar\">");
    m.addEmbeddedImage("MyAvatar",
        new File("D:/Eigene Bilder/avatar1.jpg"), "image/jpeg");
    m.addAttachment("YourAvatar", new File("D:/Eigene Bilder/avatar.jpg"),
        "image/jpeg");

    MailTransport mt = MailTransport.SMTPS;
    mt.addTrustedHost("web118.ip-projects.de", true);
    mt.addTrustedHost("blazebit.com", true);
View Full Code Here

  }

  public static Mail createMessage(String from, String[] to, String subject,
      String text, String html) {

    Mail m = new Mail();
    m.setFrom(from);
    m.addTo(to);
    m.setSubject(subject);
    m.setText(text);
    m.setHtml(html);
    return m;
  }
View Full Code Here

  }

  public static Mail createMessage(String from, String[] to, String subject,
      String text, String html, File[] attachments) throws IOException {

    Mail m = createMessage(from, to, subject, text, html);
    m.addAttachment(attachments);
    return m;
  }
View Full Code Here

TOP

Related Classes of com.blazebit.mail.Mail

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.