IP*Works! V9 - Online Help
IP*Works! V9
Questions / Feedback?

Connect Method

Connects to the mail server and attempts to login.

Syntax

[VB.NET]
Public Sub Connect()
[C#]
public void Connect();

Remarks

This method connects to the mail server and attempts to login using the current User and Password. Then it retrieves initial statistics about the mailbox contents (MessageCount and TotalSize).

Example (Connect to POP Mailbox)


POPControl.MailServer = "MyPOPServer"
POPControl.User = "username"
POPControl.Password = "password"
POPControl.Connect()

POPControl.MessageNumber = 1
POPControl.Retrieve()
MessageText = POPControl.MessageText
MessageHeaders = POPControl.MessageHeaders

NOTE: This method has a corresponding asynchronous version (ConnectAsync) for use in the WinRT environment.

 
 
Copyright (c) 2018 /n software inc. - All rights reserved.
Build 9.0.6635.0