Simple Mail and Post Office Protocol for .Net (SmtPop)

POP3Client.Open Method 

Connect the client to a POP3 server

public int Open(
   string pop3host,
   int port,
   string user,
   string pwd
);

Parameters

pop3host
Pop3 Mailserver
port
POP3 server connection port (110)
user
user login
pwd
user password

Return Value

1 if connected, -1 if error. Error property describe the last error

Remarks

The command open the connection with the server

Example

Open ("pop.mydomain", 110, "toto", "mypassword");

See Also

POP3Client Class | SmtPop Namespace