/** * Title: SMTPInterface * Description: Interface to access the SMTPComponent functions. * Copyright: Copyright (c) 2001 * Company: ICS 52, University of California, Irvine * @author Girish Suryanarayana * @version 1.0 */ public interface SMTPInterface { public boolean sendEmail (String sender, String recipient, String subject, String message); }