Jacob Madsen wrote:
>
> Does anyone know of a URL with documentation of this class? I have spent a
> lot of time browsing java.sun.com for some documentation of this class, but
> I can't find it. Can somebody help?

There is no documentation to my knowledge. There is, however, javap...

[C:/] javap sun.net.smtp.SmtpClient
Compiled from SmtpClient.java
public class sun.net.smtp.SmtpClient extends sun.net.TransferProtocolClient
{
    java.lang.String mailhost;
    sun.net.smtp.SmtpPrintStream message;

    public sun.net.smtp.SmtpClient() throws java.io.IOException;
    public sun.net.smtp.SmtpClient(java.lang.String) throws
java.io.IOException;

    void closeMessage() throws java.io.IOException;
    public void closeServer() throws java.io.IOException;
    public void from(java.lang.String) throws java.io.IOException;
    public java.lang.String getMailHost();
    void issueCommand(java.lang.String, int) throws java.io.IOException;
    public java.io.PrintStream startMessage() throws java.io.IOException;
    public void to(java.lang.String) throws java.io.IOException;
}

Hope this helps,
Ethan
--
Ethan Henry                                        [EMAIL PROTECTED]
Java Evangelist, KL Group                   http://www.klg.com
             "Software Development Productivity"

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to