Sample code for 30+ languages & platforms
Xojo Plugin

IMAP NOOP Command

Demonstrates how to send an IMAP NOOP command using SendRawCommand.

Chilkat Xojo Plugin Downloads

Xojo Plugin
Dim success As Boolean
success = False

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

Dim imap As New Chilkat.Imap

// Connect to an IMAP server.
// Use TLS
imap.Ssl = True
imap.Port = 993
success = imap.Connect("imap.example.com")
If (success <> True) Then
    System.DebugLog(imap.LastErrorText)
    Return
End If

// Login
success = imap.Login("****","****")
If (success <> True) Then
    System.DebugLog(imap.LastErrorText)
    Return
End If

// Send a NOOP command
Dim resp As String
resp = imap.SendRawCommand("NOOP")
System.DebugLog(resp)

// Disconnect from the IMAP server.
success = imap.Disconnect()