/* ***************************************************************************** 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. ***************************************************************************** */ module CorbaMail { // Creating an exception for handling the JavaMail MessagingException and AddressException. // Another common problem is a NoClassDefFoundException because the person running this // server may fail to put the javax.mail and javax.activation packages in their classpath. Both // are required by this application. exception MailError {string mailerr;}; interface Mail { string SendMail(in string FROM, in string MESSAGE, in string SUBJECT, in string USERINFO) raises (MailError); }; };