Connecting to a IMAP server

Top  Previous  Next

To establish a connection to an IMAP server, create an Imap instance providing the hostname, username and password as arguments to the constructor, then invoke the Connect method.

 

Example

 

[C#]

Imap myImap = new Imap("imap.myserver.com", "username", "password");

myImap.Connect();

 

 

[Visual Basic]

Dim myImap As Imap = Nothing

myImap = New Pop("imap.myserver.com", "username", "password")

myImap.Connect()

 

 





Home | Company | Products | Solutions | Purchase | Support | Services | Blog

© 2021 JSCAPE LLC