|
Connecting to a POP server |
|
To establish a connection to a POP server, create an Pop instance providing the hostname, username and password as arguments to the constructor.
Example
[C#]
Pop myPop = new Pop("pop.myserver.com", "username", "password");
myPop.Connect();
[Visual Basic]
Dim myPop As Pop = Nothing
myPop = New Pop("pop.myserver.com", "username", "password")
myPop.Connect()