/* ***************************************************************************** Copyright 2000 by Erica Andrews (cylikon@hotmail.com). All rights reserved. ./ButchWhipAppeal/ ./IcedPinky/ NO portion of this software may be used in ANY way by anyone other than myself without my express written consent. If it is downloaded for testing, it must be deleted from your system within 24 hours. Any other use constitutes piracy and fraudulent misuse of this software, punishable in a court of law. Copyright 2000 by Erica Andrews. All rights reserved. ***************************************************************************** */ import java.rmi.*; import javax.mail.*; import javax.mail.internet.*; import java.net.*; public interface RMIMail extends Remote { // This method is a String so that we can return information about the status of the // mail sending process (i.e. success, failure, problems with the server, etc.) String SendMail(String FROM, String MESSAGE, String SUBJECT, String USERINFO) throws RemoteException, AddressException, MessagingException; }