|
Mailer |
|
/*
* $Id: Mailer.java,v 1.5.4.3 2001/02/28 08:07:27 vijaysr Exp $
* Copyright 2001 Sun Microsystems, Inc. All rights reserved.
* Copyright 2001 Sun Microsystems, Inc. Tous droits réservés.
*/
package com.sun.j2ee.blueprints.mail.ejb;
import java.rmi.RemoteException;
import javax.ejb.EJBObject;
import com.sun.j2ee.blueprints.mail.exceptions.MailerAppException;
/**
* This interface provides method to send mail messages such
* as order confirmation mail to a client
*/
public interface Mailer extends EJBObject {
/**
* This method sends an email message.
*
* @param eMess content for the email message and also the
* information such as recipient required to
* send the message.
* @see EMailMessage
*/
public void sendMail(EMailMessage eMess)
throws RemoteException, MailerAppException;
}
|
Mailer |
|