KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > applications > email > SendMailInterface


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.applications.email;
11
12 import java.util.Map JavaDoc;
13 import javax.mail.internet.MimeMultipart JavaDoc;
14
15 /**
16  * This extension of SendMailInterface also support multipart-mails.
17  */

18
19 public interface SendMailInterface extends org.mmbase.module.SendMailInterface {
20
21     /**
22      * Sends a 'multipart' mail.
23      */

24     public boolean sendMultiPartMail(String JavaDoc from, String JavaDoc to, Map JavaDoc headers, MimeMultipart JavaDoc mmpart);
25
26
27 }
28
Popular Tags